/* Additional styles for shortcodes */

/* Product Cards */
.product-card {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-price {
    font-weight: 600;
    color: #3498db;
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.product-rating {
    margin: 1rem 0;
    font-size: 1.25rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.product-features li {
    padding: 0.25rem 0;
    border-bottom: 1px solid #e1e8ed;
}

.product-features li:last-child {
    border-bottom: none;
}

/* Comparison Tables */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #3498db;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e1e8ed;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tr:hover {
    background: #e3f2fd;
}

/* Ad Placeholders */
.ad-placeholder {
    background: #f5f5f5;
    border: 2px dashed #ccc;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.ad-content {
    padding: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ad-space {
    background: #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
}

.ad-banner {
    max-width: 728px;
    margin: 0 auto;
}

.ad-sidebar {
    max-width: 300px;
}

/* Newsletter Embed */
.newsletter-embed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.newsletter-embed h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-embed p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-embed .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-embed input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-embed .btn-primary {
    background: white;
    color: #667eea;
    border: none;
}

.newsletter-embed .btn-primary:hover {
    background: #f8f9fa;
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: #2c3e50;
    color: white;
}

.btn-secondary:hover {
    background: #34495e;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
}

.btn-success {
    background: #27ae60;
    color: white;
}

.btn-success:hover {
    background: #229954;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.btn-warning {
    background: #f39c12;
    color: white;
}

.btn-warning:hover {
    background: #e67e22;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
}

/* CTA Sections */
.cta-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.cta-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cta-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-card h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.cta-card p {
    margin-bottom: 1rem;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-embed .newsletter-form {
        flex-direction: column;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}