/* Basic Reset & Layout */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* The Container */
.product-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image-container {
    overflow: hidden; /* Keeps the zoom contained */
    cursor: pointer;
    border-radius: 5px;
}

/* The Zoom Logic */
.zoom-img {
    width: 100%;
    transition: transform 0.3s ease; /* Smooth animation */
}

/* This class will be added by JavaScript */
.is-zoomed {
    transform: scale(2); 
    cursor: zoom-out;
}

/* Technical Description Styling */
.specs {
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.specs li {
    margin-bottom: 5px;
}

/* Button Styling */
.buy-btn {
    display: block;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.buy-btn:hover {
    background-color: #128C7E;
}

.filter-menu {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #25D366;
    background: transparent;
    color: #25D366;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #25D366;
    color: white;
}

/* Hidden state for filtered items */
.product-card.hide {
    display: none;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    text-align: left;
}
.benefit-item {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
}
.faq-question {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease-out;
    border-left: 2px solid #25D366;
}
.faq-answer p {
    padding: 15px;
}

/* Testimonials */
.testimonials {
    padding: 50px 20px;
    background-color: #fff;
}
.testimonial-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    max-width: 350px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.testimonial-stars {
    color: #ffcc00;
    margin-bottom: 10px;
}

/* Footer & Form */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 50px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
}
.submit-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-weight: bold;
}
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.8rem;
}