/*
Theme Name: Hello Elementor Child - Or Lusky Book Store
Description: תבנית מותאמת לאתר מכירת הספרים של אור לוסקי
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

@import url("../hello-elementor/style.css");

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

/* Hebrew Typography */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
    font-family: 'Heebo', 'Assistant', 'Alef', Arial, sans-serif;
    line-height: 1.7;
}

/* RTL Fixes for Common Elements */
.elementor-container {
    direction: rtl;
}

.elementor-widget-heading .elementor-heading-title {
    text-align: right;
}

/* WooCommerce RTL Fixes */
.woocommerce .price {
    direction: rtl;
}

.woocommerce .price .amount {
    direction: ltr;
    display: inline-block;
}

/* Button Styles */
.elementor-button,
.woocommerce button.button,
.woocommerce a.button {
    font-family: 'Heebo', 'Assistant', Arial, sans-serif;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Header RTL */
.site-header {
    direction: rtl;
}

/* Cart Icon RTL */
.elementor-menu-cart__toggle {
    margin-left: 0;
    margin-right: 15px;
}

/* Custom Colors - Or Lusky Theme */
:root {
    --primary-color: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --white: #ffffff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    padding: 80px 0;
}

/* Product Cards */
.product-card {
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Trust Elements */
.trust-elements {
    background: var(--background-light);
    padding: 40px 0;
}

/* Social Proof */
.testimonial {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .elementor-heading-title {
        font-size: calc(1.5rem + 1vw) !important;
    }
}