
        /* Product Card Icon Actions - Always Visible Below Content */
        .product-actions-bottom {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .action-btn-bottom {
            flex: 1;
            padding: 12px;
            background: var(--light-green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            color: var(--primary-green);
            text-decoration: none;
        }

        .action-btn-bottom i {
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .action-btn-bottom:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(45, 95, 63, 0.3);
        }

        .action-btn-bottom.liked {
            background: var(--accent-orange);
            color: var(--white);
        }

        .action-btn-bottom.liked:hover {
            background: #ff8c5a;
        }

        /* Mobile adjustments */
        @media (max-width: 576px) {
            .action-btn-bottom {
                padding: 10px;
                font-size: 0.85rem;
            }

            .action-btn-bottom i {
                font-size: 1rem;
            }
        }

