/* Products Section */
#products {
    background-color: #ffffff; /* Explicitly white background */
}

.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 30px;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border-bottom: 3px solid transparent;
}

.tab-button:hover:not(.active) {
    color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Consistent shadow */
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.product-content {
    display: none;
}

.product-content.active {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-info {
    background-color: transparent; /* No background */
    padding: 0; /* No padding */
    border-radius: 0; /* No border-radius */
    box-shadow: none; /* No shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Keep transitions if hover effects are desired */
}

.product-image { /* Ensure product-image itself doesn't have card styles */
    padding: 0; /* Remove padding */
    background-color: transparent; /* No background */
    box-shadow: none; /* No shadow */
    border-radius: 0; /* No border-radius */
    transition: none; /* No transition */
}

.product-info:hover {
    transform: none; /* No transform */
    box-shadow: none; /* No shadow */
}

@media (max-width: 768px) {
    .product-tabs {
        flex-direction: row; /* Display tabs inline on small screens */
        gap: 10px;
    }

    .tab-button {
        padding: 10px 20px;
        font-size: 18px;
    }

    .product-grid {
        grid-template-columns: 1fr; /* Stack columns on small screens */
        gap: 30px;
    }

    .product-info h3 {
        font-size: 30px;
    }

    .product-info p {
        font-size: 16px;
    }

    .product-features li {
        font-size: 15px;
    }

    .product-grid .product-image {
        order: 2; /* Image appears second */
    }
    .product-grid .product-info {
        order: 1; /* Content appears first */
    }
}

.product-image img {
    width: 100%;
    border-radius: 8px;
}

.product-info h3 {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-info p {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    font-family: var(--body-font);
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}
