/* Sell Clothes Online Page Styles */

/* Custom styles for the sell clothes online page */
.sell-clothes-online {
    /* Ensure proper spacing and layout */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .sell-clothes-online .grid {
        grid-template-columns: 1fr;
    }
    
    .sell-clothes-online .text-4xl {
        font-size: 2rem;
    }
    
    .sell-clothes-online .text-2xl {
        font-size: 1.5rem;
    }
}

/* Hover effects for interactive elements */
.sell-clothes-online .bg-gray-700:hover {
    background-color: rgb(75 85 99);
    transition: background-color 0.3s ease;
}

/* Custom styling for numbered steps */
.sell-clothes-online .step-number {
    background-color: var(--brand-accent);
    color: rgb(17 24 39);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

/* Enhanced call-to-action styling */
.sell-clothes-online .cta-section {
    background: linear-gradient(135deg, var(--brand-accent) 0%, rgba(var(--brand-accent-rgb), 0.8) 100%);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

/* Icon styling consistency */
.sell-clothes-online .feature-icon {
    color: var(--brand-accent);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

/* List styling improvements */
.sell-clothes-online .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sell-clothes-online .feature-list li i {
    color: var(--brand-accent);
    margin-right: 0.5rem;
    min-width: 1rem;
}

/* Pro tip box styling */
.sell-clothes-online .pro-tip {
    background-color: rgb(55 65 81);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--brand-accent);
}

/* Template example styling */
.sell-clothes-online .template-example {
    background-color: rgb(55 65 81);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

/* Button hover effects */
.sell-clothes-online .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Responsive grid adjustments */
@media (max-width: 640px) {
    .sell-clothes-online .space-x-4 > * + * {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .sell-clothes-online .space-x-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
} 