/* Vendor Page Styles */

.vendor-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
}

.vendor-screen .container {
    max-width: 1400px;
    width: 100%;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Text Content */
.text-content {
    max-width: 550px;
}

.screen-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.screen-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.benefit-list li {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
}

.benefit-list li.highlight {
    color: #00d4ff;
    font-weight: 600;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.step-list li {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Visual Content */
.visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-content svg {
    max-width: 100%;
    height: auto;
}

/* Screen 5: Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.feature-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Screen 6: CTA */
.cta-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #00d4ff;
    color: #0a0a0a;
}

.btn-primary:hover {
    background: #00e5ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* Temperature Zones - Screen 3 */
.temp-zone {
    cursor: pointer;
    transition: all 0.3s ease;
}

.temp-zone:hover rect {
    opacity: 0.7 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .screen-title {
        font-size: 2.8rem;
    }
    
    .screen-subtitle {
        font-size: 1.3rem;
    }
    
    .visual-content {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vendor-screen {
        padding: 60px 20px;
    }
    
    .screen-title {
        font-size: 2.2rem;
    }
    
    .screen-subtitle {
        font-size: 1.1rem;
    }
    
    .benefit-list li,
    .step-list li {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Animation States */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Screen 5 specific layout */
.screen-5 .content-wrapper {
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

.screen-5 .text-content {
    text-align: center;
    max-width: 100%;
}
