/* How to Sell on eBay Page Styles */

/* Custom styles for the how to sell on ebay page */
.how-to-sell-on-ebay {
    /* Ensure proper spacing and layout */
}

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

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

/* Custom styling for numbered steps */
.how-to-sell-on-ebay .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 */
.how-to-sell-on-ebay .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 */
.how-to-sell-on-ebay .feature-icon {
    color: var(--brand-accent);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

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

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

/* Pro tip box styling */
.how-to-sell-on-ebay .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);
}

/* Strategy box styling */
.how-to-sell-on-ebay .strategy-box {
    background-color: rgb(55 65 81);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 3px solid var(--brand-accent);
}

/* Button hover effects */
.how-to-sell-on-ebay .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) {
    .how-to-sell-on-ebay .space-x-4 > * + * {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .how-to-sell-on-ebay .space-x-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Advanced tips styling */
.how-to-sell-on-ebay .advanced-tip {
    background-color: rgb(55 65 81);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--brand-accent);
}

/* Mistake list styling */
.how-to-sell-on-ebay .mistake-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.how-to-sell-on-ebay .mistake-list li i {
    color: #f87171;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    min-width: 1rem;
}

/* Strategy comparison styling */
.how-to-sell-on-ebay .strategy-comparison {
    background-color: rgb(55 65 81);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.how-to-sell-on-ebay .strategy-comparison h4 {
    color: var(--brand-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Performance analytics section */
.how-to-sell-on-ebay .analytics-section {
    background: linear-gradient(135deg, rgb(55 65 81) 0%, rgb(75 85 99) 100%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
} 