/**
 * עיצוב דפי נחיתה לסדנאות
 */

/* === בסיס כללי === */
html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    direction: rtl;
    text-align: right;
}

/* משתנים */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* עיצוב כללי */
.workshop-landing-page {
    font-family: var(--rwl-font-family, 'Heebo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif);
    line-height: 1.6;
    color: var(--text-color);
    font-size: 20px;
}

.workshop-landing-page * {
    font-family: inherit;
    line-height: inherit;
    color: inherit;
}

/* החרגת אייקונים של Font Awesome מהגופן הכללי */
i.fas,
i.far,
i.fab,
i.fa,
i.fal,
i.fad,
.fas,
.far,
.fab,
.fa,
.fal,
.fad {
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome", sans-serif !important;
    font-style: normal;
}

.fas,
i.fas,
.fad,
i.fad {
    font-weight: 900;
}

.far,
i.far {
    font-weight: 400;
}

.fal,
i.fal {
    font-weight: 300;
}

.fab,
i.fab {
    font-family: "Font Awesome 5 Brands", "FontAwesome", sans-serif !important;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

/* RTL Elements */
.section-header,
.hero-section,
.form-container,
.faq-section,
.contact-section,
.topics-grid,
.pricing-grid,
.info-grid,
.testimonials-grid,
.included-items,
.contact-grid {
    direction: rtl;
    text-align: right;
}

input,
textarea,
select {
    direction: rtl;
    text-align: right;
}

.faq-question,
.topic-item,
.date-item,
.included-item,
.contact-item,
.testimonial-author {
    flex-direction: row-reverse;
}

.faq-question i,
.date-icon,
.format-item i,
.topic-number,
.included-item i,
.contact-item i {
    margin-left: 10px;
    margin-right: 0;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: right;
    overflow: hidden;
    background-position: left center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 30px 0;
    direction: ltr;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: var(--border-radius);
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

/* === Workshop Content Section === */
.workshop-content-section {
    padding-top: 40px;
    background: var(--background-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* === About Class Section === */
.about-class-section {
    margin-bottom: 0;
    width: 100%;
}

.about-class-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    direction: ltr;
}

.about-class-image {
    width: 100%;
    height: 100vh;
    min-height: 400px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    grid-column: 1;
}

.about-class-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    direction: rtl;
    text-align: right;
    grid-column: 2;
}

.about-class-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-class-content h1,
.about-class-content h2,
.about-class-content h3,
.about-class-content h4,
.about-class-content h5,
.about-class-content h6 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.about-class-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-class-content ul,
.about-class-content ol {
    margin-bottom: 15px;
    padding-right: 20px;
}

.about-class-content li {
    margin-bottom: 8px;
}

.about-class-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: right;
    direction: rtl;
}

.about-class-text {
    direction: rtl;
    text-align: right;
}

/* אנימציות לסקשן */
.about-class-grid {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-class-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-class-image img {
    transition: var(--transition);
}

.about-class-image:hover img {
    transform: scale(1.05);
}

/* === Workshop Details === */
.workshop-details {
    padding: 80px 0;
    background: var(--background-light);
}

.workshop-details,
.workshop-details * {
    direction: rtl;
    text-align: right;
}

.workshop-info-grid {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    justify-content: flex-end;
}

.workshop-dates,
.workshop-format {
    text-align: right;
}

.date-item,
.date-content {
    direction: rtl;
    text-align: right;
    justify-content: flex-end !important;
    align-items: flex-start !important;
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.date-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.date-content .date {
    font-weight: bold;
    font-size: 1.1rem;
}

.date-content .time {
    color: var(--light-text);
}

.format-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row-reverse;
}

.format-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.format-content h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.meeting-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 10px;
}

/* === Workshop Topics === */
.workshop-topics {
    margin-top: 60px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.topic-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
}

.topic-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* === What's Included === */
.whats-included {
    margin-top: 60px;
}

.included-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.included-item i {
    color: #28a745;
    font-size: 1.1rem;
}

/* === Pricing Section === */
.pricing-section {
    padding: 80px 0;
    margin-top: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.early-bird-banner {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    direction: rtl;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    direction: rtl;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    position: relative;
    transition: var(--transition);
    text-align: right;
    max-width: 420px;
    margin: 0 16px;
}

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

.pricing-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    right: auto;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-header {
    text-align: right;
    margin-bottom: 30px;
}

.package-header h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.original-price {
    text-decoration: line-through;
    color: var(--light-text);
    font-size: 1.5rem;
    margin-right: 10px;
    margin-left: 0;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
}

.package-features i {
    color: #28a745;
    margin-left: 10px;
    margin-right: 0;
}

.register-button {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: var(--transition);
}

.register-button.primary {
    background: var(--accent-color);
    color: var(--white);
}

.register-button.secondary {
    background: var(--primary-color);
    color: var(--white);
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* === Registration Form === */
.registration-form-section {
    background: var(--background-light);
    padding: 60px 0;
    margin-top: 60px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: right;
}

.form-container h3 {
    text-align: right;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* === Additional Info === */
.additional-info {
    margin-top: 60px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    direction: rtl;
}

.info-item {
    max-width: 33%;
    flex: 1 1 33%;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-left: 0;
    margin-right: 20px;
}

.info-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* === Testimonials === */
.testimonials-section {
    padding: 80px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    direction: rtl;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    text-align: right;
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: 30px;
    left: auto;
    background: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.author-title {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* === Modal Styles === */
.rwl-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

.rwl-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.rwl-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.rwl-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rwl-modal-close:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rwl-modal-close span {
    font-size: 24px;
    color: #333;
    line-height: 1;
}

.rwl-modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
    background: #E2B84A;
    color: white;
}

.rwl-modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.rwl-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    background: #f8f9fa;
}

.modal-cycle-content {
    display: none;
}

.modal-cycle-title {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

/* Modal Payment Options */
.rwl-modal .pricing-section {
    display: grid !important;
    gap: 20px;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
}

.rwl-modal .payments-section-inside {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    justify-content: stretch !important;
    align-items: stretch !important;
    direction: rtl;
}

.rwl-modal .payment-option,
.payment-option {
    background: #F5F7FA !important;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    box-sizing: border-box;
}

.rwl-modal .payment-option:hover,
.payment-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.rwl-modal .payment-date {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Timer styles */
.styled-countdown {
    background: #f8e6fa;
    border: 2px solid #ae3ea5;
    border-radius: 16px;
    padding: 18px 10px 10px 10px;
    margin: 10px auto 0 auto;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 2px 12px 0 rgba(174, 62, 165, 0.08);
    animation: pulse-countdown 1.5s infinite alternate;
    box-sizing: border-box;
}

@keyframes pulse-countdown {
    0% {
        box-shadow: 0 2px 12px 0 rgba(174, 62, 165, 0.08);
    }

    100% {
        box-shadow: 0 4px 24px 0 rgba(174, 62, 165, 0.18);
    }
}

.rwl-modal .styled-countdown {
    max-width: 100% !important;
    min-width: auto !important;
    width: auto !important;
    display: inline-block;
    box-sizing: border-box;
    overflow: visible;
    margin: 10px auto;
    padding: 18px 30px;
}

.countdown-label-motiv {
    color: #ae3ea5;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    direction: ltr;
}

.rwl-modal .countdown-numbers {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    white-space: nowrap !important;
}

.countdown-unit {
    background: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    min-width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #ae3ea5;
}

.rwl-modal .countdown-unit {
    flex: 0 0 auto !important;
    min-width: auto !important;
    padding: 5px 8px;
    width: 30px;
}

.countdown-number {
    font-size: 1.5rem;
    color: #ae3ea5;
    font-weight: bold;
    line-height: 1;
}

.rwl-modal .countdown-number {
    display: inline-block !important;
    width: auto !important;
    font-size: 1.4em !important;
    font-weight: bold;
}

.unit-label {
    font-size: 0.8rem;
    color: #ae3ea5;
    margin-top: 2px;
}

.rwl-modal .unit-label {
    display: block !important;
    font-size: 0.85em !important;
    margin-top: 2px;
}

.colon {
    font-size: 1.5rem;
    color: #ae3ea5;
    font-weight: bold;
    margin: 0 2px;
}

.rwl-modal .colon {
    font-size: 1.5em !important;
    font-weight: bold;
    margin: 0 3px;
}

/* === FAQ Section === */
.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.answer-content {
    padding: 0 30px 20px 0;
    color: var(--light-text);
    text-align: right;
}

/* === Contact Section === */
.contact-section {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    direction: rtl;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* === Floating Header === */
.rwl-floating-header {
    direction: rtl;
    width: 100%;
    max-width: 100%;
    background: rgba(35, 167, 194, 0.15);
    border-bottom: 1.5px solid #23a7c2;
    position: relative;
    z-index: 3000;
    height: 96px;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.rwl-floating-header .global-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    padding-top: 15px;
}

.header-right {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e2b84a;
    text-align: right;
    margin-right: 0;
    padding-right: 0;
    font-family: 'Heebo';
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
    justify-content: flex-end;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 0;
    text-align: center;
}

.header-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #23a7c2;
    font-family: 'Heebo', sans-serif;
    display: inline-block;
    white-space: nowrap;
}

.header-subtext {
    font-size: 1.25rem;
    color: #23a7c2;
    margin-right: 4px;
    vertical-align: baseline;
    font-weight: 400;
    font-family: 'Heebo', sans-serif;
    display: inline-block;
}

.header-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fba63a;
    color: #fff;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 104, 108, 0.08);
    text-decoration: none;
}

.header-icon.whatsapp {
    background: #23a7c2;
}

.header-icon.email {
    background: #ef41a5;
}

.header-icon:hover {
    background: #e2b84a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(226, 184, 74, 0.18);
}

.header-site-icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    background: none;
    box-shadow: none;
    margin-right: 0;
}

.rwl-floating-header.floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #fff;
    animation: slideDown 0.3s;
    z-index: 2000;
    border-bottom: 1px solid #23a7c2;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

body.admin-bar .rwl-floating-header.floating {
    top: 32px;
}

/* === Info Section === */
.workshop-info-section {
    width: 100%;
    padding: 10px 90px 40px 90px;
    box-sizing: border-box;
    overflow-x: auto;
}

.info-cards {
    direction: rtl;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
}

.info-cards.info-cards-compact {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

@media (max-width: 768px) {
    .info-cards.info-cards-compact {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

.info-card {
    background: #F5F7FA;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
    padding: 20px 14px 16px 14px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    direction: rtl;
}

.info-icon {
    background: #f5f7fa;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #e2b84a;
    margin-bottom: 12px;
}

.info-label {
    font-size: 1rem;
    color: #7a869a;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.15rem;
    color: #2d3a4a;
    font-weight: 600;
    line-height: 1.6;
}

/* === Flexible Content Section === */
.flexible-content-section {
    padding: 40px 0 80px 0;
    background: var(--background-light);
}

.flexible-content-header {
    text-align: center;
    margin-bottom: 60px;
}

.flexible-content-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    direction: rtl;
}

.flexible-content-items {
    display: flex;
    flex-direction: column;
}

.flexible-item {
    width: 100%;
}

.flexible-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    direction: ltr;
}

.flexible-item.reverse .flexible-grid {
    direction: rtl;
}

.flexible-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.flexible-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.flexible-image:hover img {
    transform: scale(1.05);
}

.flexible-content {
    direction: rtl;
    text-align: right;
    padding: 0 20px;
}

.flexible-item-title {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}

.flexible-item-text {
    line-height: 1.7;
    color: var(--text-color);
}

.flexible-item-text p {
    margin-bottom: 15px;
}

.flexible-item-text ul,
.flexible-item-text ol {
    margin-bottom: 15px;
    list-style-position: outside;
    padding-right: 1.2em;
}

.flexible-item-text ul li,
.flexible-item-text ol li {
    line-height: 1.5em;
    margin-bottom: 0.5em;
}

.flexible-content-only {
    direction: rtl;
    text-align: right;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.flexible-content-only .flexible-item-title {
    text-align: center;
    margin-bottom: 30px;
}

.flexible-content-only .flexible-item-text {
    text-align: right;
    font-size: 20px;
}

.flexible-content-only .flexible-item-text p,
.flexible-content-only .flexible-item-text ul,
.flexible-content-only .flexible-item-text ol,
.flexible-content-only .flexible-item-text li {
    font-size: 20px;
}

/* === WYSIWYG Buttons === */
.wysiwyg-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.wysiwyg-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.wysiwyg-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.wysiwyg-button.primary {
    background: var(--primary-color, #667eea);
    color: white;
}

.wysiwyg-button.primary:hover {
    background: #5a6fd8;
}

.wysiwyg-button.secondary {
    background: var(--secondary-color, #764ba2);
    color: white;
}

.wysiwyg-button.secondary:hover {
    background: #6a4190;
}

.wysiwyg-button.accent {
    background: var(--accent-color, #ff6b6b);
    color: white;
}

.wysiwyg-button.accent:hover {
    background: #ff5252;
}

.wysiwyg-button.outline {
    background: transparent;
    border: 2px solid var(--primary-color, #667eea);
    color: var(--primary-color, #667eea);
}

.wysiwyg-button.outline:hover {
    background: var(--primary-color, #667eea);
    color: white;
}

.wysiwyg-button.small {
    padding: 8px 16px;
    font-size: 14px;
}

.wysiwyg-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

.wysiwyg-button.rounded {
    border-radius: 50px;
}

.wysiwyg-button.ripple {
    position: relative;
}

.wysiwyg-button.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wysiwyg-button.ripple:hover::before {
    width: 300px;
    height: 300px;
}

/* === Payment Buttons === */
.rwl-payment-modal-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin: 10px 5px;
}

.rwl-payment-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.rwl-payment-modal-btn i {
    margin-left: 8px;
}

.rwl-shortcode-button {
    display: inline-block;
    padding: 7px 30px;
    border-radius: 20px;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    letter-spacing: 0.5px;
}

.rwl-shortcode-button:hover,
.rwl-shortcode-button:focus {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
    opacity: 0.98;
    background-color: var(--rwl-btn-hover, #005fa3) !important;
}

/* === Cycle Section === */
.cycle-section {
    margin-bottom: 40px;
}

.cycle-title {
    font-size: 1.8rem;
    color: #ae3ea5 !important;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.cycle-separator {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ae3ea5, transparent);
    margin: 40px auto;
    width: 80%;
}

.pricing-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.payment-title {
    font-size: 1.4rem;
    color: #ae3ea5 !important;
    margin-bottom: 10px;
    font-weight: 800;
}

.payment-prices {
    margin-bottom: 10px;
}

.regular-price {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    display: block;
}

.discount-price {
    font-size: 1.4rem;
    color: #ae3ea5 !important;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.payment-info {
    font-size: 1rem;
    color: #ae3ea5;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.payment-link {
    display: inline-block;
    background: #ae3ea5 !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.payment-link:hover {
    background: #764ba2 !important;
    color: white !important;
    text-decoration: none;
}

.no-cycles-message {
    text-align: center;
    padding: 40px;
    color: var(--light-text);
    font-style: italic;
}

.strikethrough {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    margin-left: 8px;
}

.payments-section-inside {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.show-payments-btn {
    background: #ae3ea5 !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.show-payments-btn:hover {
    background: #764ba2 !important;
}

.show-payments-btn.hide-mode {
    background: #e0e0e0 !important;
    color: #888 !important;
    box-shadow: none;
}

.show-payments-btn.hide-mode:hover {
    background: #e0e0e0 !important;
    color: #888 !important;
}

.shekel-currency {
    font-size: 0.7em;
    vertical-align: middle;
}

.price-label {
    font-size: 0.85em;
    color: #888;
    margin-right: 4px;
    margin-left: 4px;
}

.payment-option.expired .payment-link {
    display: none !important;
}

/* Utility Classes */
.payment-hidden {
    display: none !important;
}

.cycle-payments {
    margin-top: 25px;
}

.cycle-payments-hidden {
    display: none !important;
}

.countdown-hidden {
    display: none !important;
}

.rwl-text {
    font-family: var(--rwl-font-family, 'Heebo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif) !important;
}

/* === Responsive Design === */
@media (max-width: 1400px) {
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .countdown-unit {
        padding: 4px 6px;
        min-width: 28px;
        font-size: 0.9rem;
    }

    .countdown-number {
        font-size: 0.95rem;
    }

    .unit-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 900px) {
    .info-cards {
        grid-template-columns: 1fr;
    }

    .about-class-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        direction: rtl;
    }

    .about-class-content {
        grid-column: auto;
        padding: 0 30px;
        order: 1;
    }

    .about-class-image {
        grid-column: auto;
        min-height: 650px;
        background-position: top center;
        order: 2;
    }

    .flexible-content-section {
        padding: 60px 0;
    }

    .flexible-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: rtl;
    }

    .flexible-item.reverse .flexible-grid {
        direction: rtl;
    }

    .flexible-image {
        height: 300px;
        order: 2;
    }

    .flexible-content {
        order: 1;
        padding: 0 20px;
    }

    .flexible-item-title {
        font-size: 1.8rem;
    }

    .flexible-content-only {
        padding: 0 20px;
    }

    .flexible-content-only .flexible-item-title {
        font-size: 1.8rem;
    }

    .flexible-content-only .flexible-item-text {
        font-size: 1rem;
    }

    .countdown-unit {
        padding: 8px 10px;
        min-width: 48px;
        font-size: 1.5rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .unit-label {
        font-size: 0.8rem;
    }

    .payment-option {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }

    .rwl-floating-header .global-header-content {
        padding: 0 20px;
        height: 56px;
        padding-top: 10px;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .header-right,
    .header-left {
        padding: 0 5px;
    }

    .header-site-icon {
        margin-left: 20px;
        margin-right: 0;
        overflow: visible;
    }

    .header-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .header-main {
        font-size: 2.1rem;
    }

    .header-subtext {
        font-size: 1.2rem;
    }

    .about-class-content,
    .about-class-text {
        padding: 0 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 24px;
    }

    .styled-countdown {
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
    }
}

@media (max-width: 782px) {
    body.admin-bar .rwl-floating-header.floating {
        top: 46px;
    }
}

@media (max-width: 768px) {

    html,
    body,
    .workshop-landing-page {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0;
        box-sizing: border-box;
    }

    .workshop-info-section {
        padding: 0 20px;
    }

    .about-class-content {
        padding: 0 25px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 15px;
    }

    .workshop-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-class-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }

    .about-class-image {
        height: 450px;
        min-height: 180px;
        width: 100%;
        max-width: 100%;
    }

    .about-class-content {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .pricing-card.popular {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .rwl-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }

    .rwl-modal-header {
        padding: 20px 25px 15px;
    }

    .rwl-modal-title {
        font-size: 20px;
    }

    .rwl-modal-body {
        padding: 20px;
    }

    .rwl-modal-close {
        top: 10px;
        left: 10px;
        width: 35px;
        height: 35px;
    }

    .rwl-modal .styled-countdown {
        padding: 8px 10px 6px 10px;
        font-size: 0.95rem;
    }

    .rwl-modal .countdown-numbers {
        flex-wrap: wrap;
    }

    .cycle-title {
        font-size: 1.5rem;
    }

    .pricing-section {
        margin: 20px 10px 0 10px;
        padding: 15px;
    }

    .wysiwyg-button {
        padding: 10px 20px;
        font-size: 15px;
    }

    .wysiwyg-button.large {
        padding: 14px 28px;
        font-size: 17px;
    }
}

@media (max-width: 700px) {

    html,
    body,
    .workshop-landing-page,
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .workshop-info-section {
        padding: 0 20px;
    }

    .info-card {
        flex: 1 1 100%;
        min-width: 280px;
        max-width: 100%;
        margin: 0;
        padding: 20px 16px 16px 16px;
    }

    .workshop-content-section {
        padding-top: 32px !important;
    }

}

@media (max-width: 600px) {
    .rwl-floating-header .global-header-content {
        flex-direction: row;
        height: auto;
        gap: 6px;
        padding: 8px 20px 0 20px;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }

    .header-right {
        order: 1;
        margin-right: 0;
        margin-left: 10px;
    }

    .header-center {
        order: 2;
        gap: 6px;
        justify-content: center;
        margin: 0 auto;
        padding: 0 10px;
    }

    .header-left {
        order: 3;
        margin-left: 20px;
        margin-right: 10px;
    }

    .header-site-icon {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 500px) {

    .header-main {
        font-size: 1.8rem;
    }

    .header-subtext {
       display: none;
    }


    .countdown-unit {
        padding: 3px 2px;
        min-width: 24px;
        font-size: 0.9rem;
    }

    .countdown-number {
        font-size: 0.9rem;
    }

    .unit-label {
        font-size: 0.7rem;
    }

    .styled-countdown {
        max-width: 98vw;
        padding: 6px 1px 4px 1px;
        font-size: 0.95rem;
    }

    .countdown-numbers {
        flex-wrap: wrap;
        gap: 4px;
    }

    .colon {
        font-size: 1rem;
        margin: 0 1px;
    }
}

@media (max-width: 480px) {

    html,
    body,
    .workshop-landing-page {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0;
        box-sizing: border-box;
    }

    .workshop-info-section {
        padding: 0 15px;
    }

    .about-class-content {
        padding: 0 20px;
    }

    .hero-section {
        padding: 60px 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .countdown-timer {
        justify-content: flex-start;
    }

    .countdown-item {
        min-width: 50px;
        padding: 10px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .about-class-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-class-grid {
        gap: 30px;
        max-width: 100%;
        width: 100%;
    }

    .about-class-content {
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .workshop-content-section {
        padding: 80px 0;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }

    .flexible-content-section {
        padding: 40px 0;
    }

    .flexible-image {
        height: 250px;
    }

    .flexible-content {
        padding: 0 15px;
    }

    .flexible-item-title {
        font-size: 1.6rem;
    }

    .flexible-content-only {
        padding: 0 15px;
    }

    .flexible-content-only .flexible-item-title {
        font-size: 1.6rem;
    }

    .about-class-content,
    .about-class-text {
        padding: 0 8px;
    }
}

/* === Footer Section === */
.site-footer {
    background: rgba(226, 184, 74, 0.15);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #E2B84A;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer p {
    margin: 10px 0;
}

.site-footer .copyright {
    font-size: 14px;
    color: #333;
}

.site-footer .privacy-link a {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

.site-footer .privacy-link a:hover {
    text-decoration: underline;
}

