/* =========================================================
   Ezycreate for WooCommerce - Admin Dashboard Styles
   ========================================================= */

.ezycreate-dashboard {
    max-width: 1200px;
}

/* ---------------------------------------------------------
   Hero Section
   --------------------------------------------------------- */
.ezycreate-hero {
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: white;
    padding: 40px 50px;
    border-radius: 8px;
    margin: 20px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.ezycreate-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Logo at the top */
.ezycreate-hero-header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    text-align: center;
}

/* Main content area */
.ezycreate-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Logo Styles */
.ezycreate-logo-container {
    display: inline-block;
}

.ezycreate-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ezycreate-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
}

.ezycreate-logo-fallback .dashicons {
    font-size: 42px;
    width: 42px;
    height: 42px;
}

.ezycreate-logo-fallback .logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.ezycreate-hero h2 {
    color: white;
    font-size: 32px;
    margin: 0 0 10px 0;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
}

.ezycreate-hero-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ezycreate-hero-image {
    display: none;
}

/* ---------------------------------------------------------
   Status Cards Grid
   --------------------------------------------------------- */
.ezycreate-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ezycreate-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ezycreate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ezycreate-card.card-success {
    border-left: 4px solid #46b450;
}

.ezycreate-card.card-warning {
    border-left: 4px solid #ffb900;
}

.card-icon {
    font-size: 48px;
    color: #2271b1;
    margin-bottom: 15px;
}

.card-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #1e1e1e;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin: 10px 0;
}

.card-status.success {
    color: #46b450;
}

.card-status.warning {
    color: #ffb900;
}

.card-number {
    font-size: 36px;
    font-weight: bold;
    color: #2271b1;
    margin: 10px 0;
}

.ezycreate-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.ezycreate-links li {
    margin: 8px 0;
}

.ezycreate-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2271b1;
    text-decoration: none;
}

.ezycreate-links a:hover {
    color: #135e96;
}

/* ---------------------------------------------------------
   Quick Start Guide
   --------------------------------------------------------- */
.ezycreate-quick-start {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.ezycreate-quick-start h2 {
    margin-top: 0;
    color: #1e1e1e;
}

.quick-start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.quick-start-step {
    position: relative;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2271b1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #1e1e1e;
}

.step-content p {
    color: #646970;
    font-size: 14px;
    margin-bottom: 15px;
}

/* ---------------------------------------------------------
   Features Section
   --------------------------------------------------------- */
.ezycreate-features {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.ezycreate-features h2 {
    margin-top: 0;
    color: #1e1e1e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item .dashicons {
    font-size: 48px;
    color: #2271b1;
    width: 48px;
    height: 48px;
}

.feature-item h3 {
    margin: 15px 0 10px 0;
    font-size: 16px;
    color: #1e1e1e;
}

.feature-item p {
    color: #646970;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------------------------------------------------------
   Settings ? Need Credentials? Contact Box
   --------------------------------------------------------- */
.ezy-credentials-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f0f6fc;
    border: 1px solid #c3daf0;
    border-left: 4px solid #2271b1;
    border-radius: 6px;
    padding: 20px 24px;
    margin-top: 24px;
    max-width: 700px;
}

.ezy-credentials-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #2271b1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ezy-credentials-icon .dashicons {
    color: #fff;
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 1;
}

.ezy-credentials-body h3 {
    margin: 0 0 6px 0;
    font-size: 15px;
    color: #1d2327;
}

.ezy-credentials-body p {
    margin: 0 0 12px 0;
    color: #50575e;
    font-size: 13px;
    line-height: 1.6;
}

.ezy-credentials-email-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2271b1;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 4px;
    transition: background 0.2s;
}

.ezy-credentials-email-link:hover {
    background: #135e96;
    color: #fff !important;
}

.ezy-credentials-email-link .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1.1;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 782px) {
    .ezycreate-hero {
        padding: 30px 20px;
    }

    .ezycreate-hero h2 {
        font-size: 24px;
    }

    .ezycreate-hero-description {
        font-size: 14px;
    }

    .ezycreate-logo {
        max-width: 160px;
    }

    .ezycreate-cards,
    .quick-start-steps,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .ezy-credentials-contact-box {
        flex-direction: column;
        align-items: flex-start;
    }
}