/* WooCommerce attributes table */
.wc-attributes-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.wc-attributes-table th,
.wc-attributes-table td {
    border: 1px solid #e5e5e5;
    padding: 10px;
    text-align: left;
}

.wc-attributes-table th {
    background: #f7f7f7;
    width: 30%;
    font-weight: 600;
}

/* Downloads */
.product-downloads {
    display: flex;
    gap: 16px;
    margin: 20px 0;
}

.product-download-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: color 0.2s ease;
}

.product-download-link .download-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.product-download-link .download-label {
    font-size: 14px;
    line-height: 1;
}

.product-download-link:hover {
    color: #0073aa;
}

@media (max-width: 600px) {
    .product-downloads {
        flex-direction: column;
        gap: 10px;
    }
}
/* Desktop */
@media (min-width: 769px) {
    .single-product .woocommerce-product-gallery {
        max-width: 450px;
    }

    .single-product .woocommerce-product-gallery__image img {
        width: 75%;
        height: auto;
        object-fit: contain;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .single-product .woocommerce-product-gallery {
        max-width: 100%;
    }

    .single-product .woocommerce-product-gallery__image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

//.single-product .woocommerce-product-gallery__trigger {
//    display: none !important;
//}

//.single-product .zoomImg {
//    display: none !important;
//}

.single-product .woocommerce-product-gallery__image {
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.single-product .woocommerce-product-gallery__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}