    /* Product Showcase Styles */
    .products-section {
        padding: 80px 0;
        background-color: #f8f8f8;
    }
    
    .products-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .products-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .products-header h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }
    
    .products-header p {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        max-width: 800px;
        margin: 0 auto;
        color: #666;
        line-height: 1.6;
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .products-card {
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .products-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .products-card-image-wrapper {
        height: 250px;
        overflow: hidden;
    }
    
    .products-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .products-card:hover .products-card-image {
        transform: scale(1.05);
    }
    
    .products-card-content {
        padding: 30px;
        position: relative;
    }
    
    .products-card-icon-wrapper {
        position: absolute;
        top: -20px;
        left: 30px;
        width: 40px;
        height: 40px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .products-card-icon {
        font-size: 20px;
        color: #d4af37;
    }
    
    .products-card h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        color: #333;
    }
    
    .products-card p {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .products-card-cta {
        display: inline-block;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        padding-bottom: 5px;
        border-bottom: 2px solid #d4af37;
        transition: color 0.3s ease;
    }
    
    .products-card-cta:hover {
        color: #d4af37;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .products-header h2 {
            font-size: 36px;
        }
        
        .products-card {
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .products-section {
            padding: 50px 0;
        }
        
        .products-grid {
            grid-template-columns: 1fr;
        }
        
        .products-header h2 {
            font-size: 32px;
        }
    }
    