/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

     .woocommerce .products {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 30px;
        }

        .product-card {
            background: white;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

   .product-card {
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
        }


        .product-image-container {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-info {
            padding: 28px;
        }

        .product-name {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .product-description {
            font-size: 14px;
            color: #888;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .product-price {
            font-size: 70px;
            font-weight: 700;
        }

  



        @media (max-width: 768px) {

            .products-grid {
                grid-template-columns: 1fr;
            }

            .product-image-container {
                height: 280px;
            }
        }