/*
Theme Name: Hello Elementor Child - Stone Export
Template: hello-elementor
Version: 1.2.0
*/

/* RTL Support */
/* body {
    direction: rtl;
    text-align: right;
} */

/* Product Grid */
.stone-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-octa {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: bold;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-phone, .btn-whatsapp {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.btn-phone { background: #2c3e50; }
.btn-whatsapp { background: #25D366; }