/* =================== PROCESS PAGE STYLES =================== */

/* --- Process Section --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step { 
    text-align: center; 
    /* The padding is now on the content, not the step container itself. */
}

/* New: Styles for the media container */
.process-media-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 1.5rem;
}

.process-media-wrapper img, .process-media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* New: Styles for the text content within the card */
.process-step-content {
    padding: 0 1.5rem 1.5rem;
}

.process-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--background-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    border: 1px solid var(--border-color);
}
.process-step h4 { 
    margin-bottom: 0.5rem; 
}

/* NEW: Fish Sales Order Form Styles */
.order-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.order-form-container .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-form-container input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: var(--background-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.order-form-container input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.order-form-container .btn {
    width: 100%;
    margin-top: 1rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .process-grid { 
        grid-template-columns: 1fr; 
    }
    .order-form-container .form-group {
        grid-template-columns: 1fr;
    }
}