/* ═══════════════════════════════════════════════════════════════════════════
   YRZ HERO SECTION — Elementor Widget Styles
   ═══════════════════════════════════════════════════════════════════════════ */

.yrz-hero-section {
    --yrz-accent: #FF6B35;
    --yrz-accent-hover: #E85A28;
    --yrz-accent-light: color-mix(in srgb, var(--yrz-accent) 8%, #ffffff);
    --yrz-bg: #FAFAF7;
    --yrz-text: #1A1A1A;
    --yrz-text-soft: #6B6B6B;
    --yrz-border: #EBEBEB;
    --yrz-card-shadow: 0 12px 40px rgba(0,0,0,0.08);
    --yrz-card-shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
    --yrz-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --yrz-font: 'Rubik', 'Heebo', sans-serif;

    padding: 50px 0 70px;
    background: var(--yrz-bg);
    font-family: var(--yrz-font);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.yrz-hero-section *,
.yrz-hero-section *::before,
.yrz-hero-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.yrz-hero-section img {
    max-width: 100%;
    display: block;
}

/* Background radial glow */
.yrz-hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--yrz-accent) 7%, transparent) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.yrz-hero-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61,123,247,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── Container ────────────────────────────────────────────────────────────── */

.yrz-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ── Grid Layout ──────────────────────────────────────────────────────────── */

.yrz-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ── Text Content ─────────────────────────────────────────────────────────── */

.yrz-hero__content {
    position: relative;
    z-index: 2;
}

.yrz-hero__title {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--yrz-text);
}

.yrz-hero__highlight {
    background: linear-gradient(135deg, var(--yrz-accent) 0%, color-mix(in srgb, var(--yrz-accent) 65%, #FFB088) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yrz-hero__subtitle {
    font-size: 18px;
    color: var(--yrz-text-soft);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* ── CTA Buttons ──────────────────────────────────────────────────────────── */

.yrz-hero__cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.yrz-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--yrz-accent);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--yrz-font);
    cursor: pointer;
    text-decoration: none;
    transition: var(--yrz-transition);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--yrz-accent) 30%, transparent);
}

.yrz-hero__btn-primary:hover {
    background: var(--yrz-accent-hover);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--yrz-accent) 35%, transparent);
}

.yrz-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #ffffff;
    color: var(--yrz-text);
    border: 2px solid var(--yrz-border);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--yrz-font);
    cursor: pointer;
    text-decoration: none;
    transition: var(--yrz-transition);
}

.yrz-hero__btn-secondary:hover {
    border-color: var(--yrz-text);
    color: var(--yrz-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* ── Visual / Product Grid ────────────────────────────────────────────────── */

.yrz-hero__visual {
    position: relative;
}

.yrz-hero__showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    transform: rotate(-2deg);
}

/* ── Product Card ─────────────────────────────────────────────────────────── */

.yrz-hero__product {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--yrz-card-shadow);
    transition: var(--yrz-transition);
    text-decoration: none;
    color: var(--yrz-text);
    display: block;
    position: relative;
}

/* Offset every other card */
.yrz-hero__product--offset {
    margin-top: 30px;
}

/* Hover effect — lift + shadow */
.yrz-hero__product:hover {
    transform: scale(1.04);
    box-shadow: var(--yrz-card-shadow-hover);
    color: var(--yrz-text);
}

/* Image wrapper */
.yrz-hero__product-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}

.yrz-hero__product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image zoom on hover */
.yrz-hero__product:hover .yrz-hero__product-img {
    transform: scale(1.08);
}

/* Sale badge on product */
.yrz-hero__product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--yrz-accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2;
    letter-spacing: 0.02em;
}

/* Product info */
.yrz-hero__product-info {
    padding: 14px 16px;
}

.yrz-hero__product-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
    color: var(--yrz-text);
    /* Clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yrz-hero__product-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--yrz-accent);
}

.yrz-hero__product-price small {
    font-size: 12px;
    color: #B0B0B0;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

/* ── Floating Badges ──────────────────────────────────────────────────────── */

.yrz-hero__float {
    position: absolute;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: box-shadow var(--yrz-transition);
    pointer-events: none;
}

.yrz-hero__float:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Position badge 1 — top right */
.yrz-hero__float--1 {
    top: -10px;
    right: -10px;
}

/* Position badge 2 — bottom left */
.yrz-hero__float--2 {
    bottom: 0;
    left: -10px;
    animation-delay: 2s !important;
}

/* Float animation */
.yrz-hero__float.yrz-float-animate {
    animation: yrzFloat 4s ease-in-out infinite;
}

.yrz-hero__float--2.yrz-float-animate {
    animation-delay: 2s;
}

@keyframes yrzFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.yrz-hero__float-emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.yrz-hero__float-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--yrz-text);
    white-space: nowrap;
}

.yrz-hero__float-text span {
    display: block;
    font-weight: 400;
    color: var(--yrz-text-soft);
    font-size: 11px;
}

/* ── No Products Placeholder ──────────────────────────────────────────────── */

.yrz-hero__no-products {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 2px dashed var(--yrz-border);
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    font-size: 15px;
    color: var(--yrz-text-soft);
}

/* ── Fade-up Animation ────────────────────────────────────────────────────── */

.yrz-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.yrz-fade-up.yrz-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for visual side */
.yrz-hero__visual.yrz-fade-up {
    transition-delay: 0.2s;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .yrz-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .yrz-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .yrz-hero__cta-group {
        justify-content: center;
    }

    .yrz-hero__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .yrz-hero__float--1 {
        right: 0;
        top: -5px;
    }

    .yrz-hero__float--2 {
        left: 0;
    }
}

@media (max-width: 768px) {
    .yrz-hero-section {
        padding: 30px 0 50px;
    }

    .yrz-hero__showcase {
        gap: 10px;
        transform: rotate(0deg);
    }

    .yrz-hero__product--offset {
        margin-top: 15px;
    }

    .yrz-hero__product-img-wrap {
        height: 140px;
    }

    .yrz-hero__product-info {
        padding: 10px 12px;
    }

    .yrz-hero__product-name {
        font-size: 12px;
    }

    .yrz-hero__product-price {
        font-size: 15px;
    }

    .yrz-hero__float {
        padding: 10px 14px;
        border-radius: 10px;
    }

    .yrz-hero__float-emoji {
        font-size: 20px;
    }

    .yrz-hero__float-text {
        font-size: 12px;
    }

    .yrz-hero__btn-primary,
    .yrz-hero__btn-secondary {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .yrz-hero__float--1 {
        right: -5px;
        top: -15px;
        font-size: 11px;
    }

    .yrz-hero__float--2 {
        left: -5px;
        bottom: -10px;
    }

    .yrz-hero__product-img-wrap {
        height: 120px;
    }
}
