/* Desktop-specific styles */

/* Desktop-specific grid adjustments */
.header .grid-container {
    padding-bottom: 20px;
}

/* Desktop Main Layout - Two Column Grid */
@media (min-width: 1024px) {
    .desktop-main-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 32px;
        align-items: start;
    }

    .desktop-steps-column {
        max-width: 100%;
        padding-right: 24px;
    }

    .desktop-preview-column {
        position: sticky;
        top: 100px;
        align-self: start;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    /* Align preview with Step 2 visually */
    .desktop-preview-column {
        padding-top: 0;
    }

    .desktop-preview-column .section {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 24px;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .desktop-recommendations-section {
        max-width: 1400px;
        margin: 48px auto 0;
        padding: 0 32px;
    }

    /* Steps column styling */
    .desktop-steps-column .section {
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        min-height: auto;
    }

    /* Form inputs should not stretch full width */
    .desktop-steps-column .form-select {
        max-width: 100%;
    }

    .desktop-steps-column .btn {
        max-width: 320px;
        width: 100%;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Preview area styling */
    .desktop-preview-column .photo-container {
        background: white;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        aspect-ratio: 4/3;
        max-width: 100%;
    }

    .desktop-preview-column .empty-upload-state {
        min-height: 400px;
        width: 100%;
    }

    /* Ensure preview aligns with Step 2 */
    .desktop-preview-column {
        margin-top: 0;
    }

    /* Typography adjustments for desktop */
    .desktop-steps-column .journey-header {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .desktop-steps-column .journey-subtext {
        font-size: 1em;
        margin-bottom: 32px;
    }

    .desktop-steps-column .description strong {
        font-size: 1.15em;
        font-weight: 600;
    }
}

/* Desktop-specific section styling */
.section {
    padding: 20px;
}

.section .button-group {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

/* Desktop-specific form styling */
.form-section {
    margin-bottom: 32px;
}

/* Desktop-specific footer styling */
.footer {
    margin-top: 40px;
    padding: 40px;
}

/* Desktop-specific image preview */
.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Desktop-specific file input */
#fileInput {
    display: none;
}