/* Placeholder images for Brinno cameras */
.product-image img {
    background-color: #f0f0f0;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img::after {
    content: "Brinno Camera";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 1.2rem;
}

/* Additional responsive improvements */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .benefits-section,
    .products-section,
    .comparison-section,
    .reviews-section,
    .faq-section,
    .cta-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .comparison-table img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .site-header .container {
        padding: 0.75rem;
    }
    
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .comparison-table th:nth-child(3),
    .comparison-table td:nth-child(3) {
        display: none;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .comparison-table img {
        width: 50px;
        height: 50px;
    }
    
    .check-price-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Print styles */
@media print {
    .site-header,
    .hero-section,
    .benefits-section,
    .cta-section,
    .site-footer {
        display: none;
    }
    
    .products-section,
    .comparison-section {
        padding: 1rem 0;
    }
    
    .product-card,
    .comparison-table {
        page-break-inside: avoid;
    }
    
    .product-cta,
    .check-price-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 18pt;
    }
    
    h3 {
        font-size: 14pt;
    }
}
