/* Autoflower Seeds Category Page Styles - Add to WordPress CSS */
.custom-auto-hero {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.custom-auto-hero h1 {
    font-size: 2.5em;
    margin: 0 0 20px 0;
}

.custom-auto-badges {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.custom-auto-badge {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.custom-auto-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.custom-auto-button {
    background: #6f42c1;
    color: white !important;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: block;
}

.custom-auto-button:hover {
    background: #e83e8c;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.custom-auto-definition {
    background: #f8f9fa;
    border-left: 4px solid #6f42c1;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.custom-auto-definition h2 {
    color: #6f42c1;
    margin-top: 0;
    font-size: 1.8em;
}

.custom-auto-comparison {
    overflow-x: auto;
    margin: 30px 0;
}

.custom-auto-comparison table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-auto-comparison th {
    background: #6f42c1;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.custom-auto-comparison td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.custom-auto-comparison tr:hover {
    background: #f8f9fa;
}

.custom-auto-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.custom-auto-feature {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #6f42c1;
}

.custom-auto-feature h3 {
    color: #6f42c1;
    margin-top: 0;
}

.custom-auto-strains {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.custom-auto-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
}

.custom-auto-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.custom-auto-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.custom-auto-details {
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

.custom-auto-price {
    font-size: 1.2em;
    color: #6f42c1;
    font-weight: bold;
    margin: 15px 0;
}

.custom-auto-cart {
    background: #6f42c1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: all 0.3s;
}

.custom-auto-cart:hover {
    background: #5a32a3;
}

.custom-auto-section {
    margin: 40px 0;
    width: 100%;
}

.custom-auto-section h2 {
    color: #2c3e50;
    font-size: 1.8em;
    border-bottom: 3px solid #6f42c1;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.custom-auto-section h3 {
    color: #495057;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

.custom-auto-alert {
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    border-left: 5px solid;
}

.custom-auto-warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.custom-auto-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.custom-auto-info {
    background: #e7e8ea;
    border-color: #6c757d;
    color: #383d41;
}

.custom-auto-protip {
    background: #fff3cd;
    border-color: #f4b643;
    color: #856404;
}

.custom-auto-timeline {
    background: white;
    border: 2px solid #6f42c1;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.custom-auto-week {
    padding: 15px;
    margin: 10px 0;
    background: #f8f9fa;
    border-left: 3px solid #6f42c1;
    border-radius: 5px;
}

.custom-auto-week h4 {
    color: #6f42c1;
    margin: 0 0 10px 0;
}

.custom-auto-faq {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.custom-auto-faq-item {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 5px;
}

.custom-auto-question {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.custom-auto-cta {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    width: 100%;
}

.custom-auto-cta h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.custom-auto-cta-button {
    display: inline-block;
    background: white;
    color: #6f42c1;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s;
    margin-top: 15px;
}

.custom-auto-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-decoration: none;
    color: #6f42c1;
}

.custom-auto-resources {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    width: 100%;
}

.custom-auto-resources h3 {
    color: #495057;
    margin-bottom: 20px;
}

.custom-auto-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.custom-auto-link-group strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
}

.custom-auto-link-group a {
    color: #6f42c1;
    text-decoration: none;
    display: block;
    padding: 3px 0;
}

.custom-auto-link-group a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-auto-hero h1 {
        font-size: 1.8em;
    }
    
    .custom-auto-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .custom-auto-comparison {
        font-size: 0.9em;
    }
    
    .custom-auto-strains {
        grid-template-columns: 1fr;
    }
    
    .custom-auto-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .custom-auto-hero {
        padding: 20px;
    }
    
    .custom-auto-nav {
        grid-template-columns: 1fr;
    }
    
    .custom-auto-features {
        grid-template-columns: 1fr;
    }
}
