/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 26 2025 | 12:01:55 */
.product-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 25px;
            margin-top: 30px;
	      margin-bottom: 50px;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .product-content {
            padding: 20px;
        }
a.cta-button {
    color: #fff !important;
}
        .product-title {
            font-size: 1.3rem !important;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .price {
            font-size: 1.6rem;
            font-weight: bold;
            color: #e74c3c;
        }

        .features-list {
            list-style-type: none;
            margin-bottom: 20px;
        }

        .features-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: #555;
        }

        .features-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #3498db;
            font-weight: bold;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 24px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #2980b9;
        }