/* Custom styles */
#hero {
    background: url('http://static.photos/nature/1200x630/1') no-repeat center center;
    background-size: cover;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Product hover effect */
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Inflatable tent page styles */
.inflatable-feature {
    transition: all 0.3s ease;
}

.inflatable-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Responsive adjustments */
@media (max-width: 640px) {
    #hero h1 {
        font-size: 2.5rem;
    }
    #hero p {
        font-size: 1.1rem;
    }
}