/**
 * Theme Name:     Storefront Child
 * Author:         Automattic
 * Template:       storefront
 * Text Domain:	   storefront-child
 * Description:    Storefront is the perfect theme for your next WooCommerce project. Designed and developed by WooCommerce Core developers, it features a bespoke integration with WooCommerce itself plus many of the most popular customer facing WooCommerce extensions. There are several layout &amp; color options to personalise your shop, multiple widget regions, a responsive design and much more. Developers will love its lean and extensible codebase making it a joy to customize and extend. Looking for a WooCommerce theme? Look no further!
 */


 .products-archive {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.product-card {
  
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.product-card-inner {
    display: flex;
    gap: 20px;
}

.product-image img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.product-details {
    flex: 1;
}

.product-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-meta {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-meta li {
    margin-bottom: 5px;
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.get-quote-button,
.view-details-button {
    background-color: #00c853;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.view-details-button {
    background-color: #f4f4f4;
    color: #333;
}
