/* Layout Improvements CSS */

/* Improved Gallery Card Layout */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-image {
    flex: 1;
}

/* Product Cards Improvements */
.product-carousel .swiper-slide {
    height: auto;
    padding: 15px;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.product-image {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
}

.product-details {
    flex: 1;
    padding: 25px;
}

/* Improved Contact Form */
.contact-form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    transition: transform 0.3s ease;
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    padding: 15px 15px 15px 45px;
    border-radius: 8px;
}

.form-group textarea {
    height: 180px;
}

/* Remove WhatsApp Card */
.whatsapp-contact {
    display: none;
}

/* Fixed WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn i {
    font-size: 2rem;
    color: white;
}