/* ==========================================================================
   חברה קדישא המערבית - CSS עבור WordPress
   כל המחלקות מתחילות ב-kadisha- למניעת התנגשות עם התמה הקיימת
   ========================================================================== */

/*
 * Fix: Elementor's stretch sections (footer + hidden nav menus) have inline
 * style="width: 2048px" set by their JS. That inflates document.scrollWidth
 * to ~10,400px even on a 400px-wide phone. Mobile browsers react to the
 * oversized scrollWidth by zooming the whole page out, which is why our
 * media queries fire correctly but the visual result still looks desktop.
 *
 * 'overflow-x: clip' (unlike 'hidden') stops the browser from reporting
 * the overflowing content in scrollWidth, so mobile stops zooming out.
 * Applied at html/body so it catches content in every Elementor template.
 */
html.kadisha-clip, html.kadisha-clip body { overflow-x: clip; }

.kadisha-page {
    --ka-burgundy: #6B2D2D;
    --ka-burgundy-dark: #4A1E1E;
    --ka-gold: #B08B4F;
    --ka-gold-light: #D4B878;
    --ka-gold-pale: #E8D9B8;
    --ka-cream: #F7F2E9;
    --ka-parchment: #FAF6EF;
    --ka-ink: #2C2826;
    --ka-ink-light: #4A4340;
    --ka-border: #D7CBB5;

    font-family: 'Assistant', Arial, sans-serif;
    color: var(--ka-ink);
    line-height: 1.75;
    direction: rtl;
    text-align: right;
    font-size: 17px;
    max-width: 100%;
    overflow-x: hidden;
}

/* safety net - שום אלמנט בתוך הדף לא יצור גלילה אופקית */
.kadisha-page section,
.kadisha-page .kadisha-container {
    max-width: 100%;
}

.kadisha-page *, .kadisha-page *::before, .kadisha-page *::after {
    box-sizing: border-box;
}

.kadisha-page h1, .kadisha-page h2, .kadisha-page h3, .kadisha-page h4 {
    font-family: 'Frank Ruhl Libre', 'David Libre', serif;
    color: var(--ka-burgundy-dark);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 1rem;
}

.kadisha-page h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
.kadisha-page h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; }
.kadisha-page h3 { font-size: 1.625rem; }
.kadisha-page h4 { font-size: 1.125rem; font-weight: 600; }

.kadisha-page p { margin: 0 0 1rem; }

.kadisha-page a:not(.kadisha-btn):not(.kadisha-btn-submit) { color: var(--ka-burgundy); text-decoration: none; transition: color .3s; }
.kadisha-page a:not(.kadisha-btn):not(.kadisha-btn-submit):hover { color: var(--ka-gold); }

.kadisha-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Hero ===== */
.kadisha-hero {
    background: linear-gradient(135deg, var(--ka-burgundy-dark) 0%, var(--ka-burgundy) 60%, #8B4545 100%);
    color: var(--ka-cream);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kadisha-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(212, 184, 120, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 85% 70%, rgba(212, 184, 120, 0.10) 0%, transparent 30%);
    pointer-events: none;
}

.kadisha-hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

.kadisha-hero h1 { color: var(--ka-cream); text-shadow: 0 2px 8px rgba(0,0,0,0.3); }

.kadisha-hero-eyebrow {
    display: inline-block;
    font-family: 'Frank Ruhl Libre', serif;
    color: var(--ka-gold-light);
    letter-spacing: 0.1em;
    padding: 0.25rem 1.5rem;
    border-top: 1px solid var(--ka-gold);
    border-bottom: 1px solid var(--ka-gold);
    margin-bottom: 1rem;
}

.kadisha-hero-subtitle {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.375rem;
    color: var(--ka-gold-light);
    font-style: italic;
    font-weight: 300;
}

.kadisha-hero .kadisha-hero-description,
.kadisha-page .kadisha-hero-description {
    font-size: 1.125rem;
    color: #EDE4D3;
    max-width: 700px;
    margin-inline: auto;
    margin-top: 0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-align: center !important;
    text-align-last: center !important;
    direction: rtl;
}

.kadisha-hero-description strong { color: var(--ka-gold-light); font-weight: 700; }

.kadisha-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kadisha-btn, .kadisha-btn-submit {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s;
    border: 2px solid transparent;
    text-decoration: none;
    font-family: inherit;
}

.kadisha-btn-primary {
    background: var(--ka-gold);
    color: var(--ka-burgundy-dark);
    border-color: var(--ka-gold);
}
.kadisha-btn-primary:hover {
    background: var(--ka-gold-light);
    color: var(--ka-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.kadisha-btn-outline {
    background: transparent;
    color: var(--ka-cream);
    border-color: var(--ka-cream);
}
.kadisha-btn-outline:hover {
    background: var(--ka-cream);
    color: var(--ka-burgundy-dark);
}

/* ===== Section ===== */
.kadisha-section {
    padding: 5rem 0;
    background: var(--ka-parchment);
}
.kadisha-section-alt { background: var(--ka-cream); }

.kadisha-section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kadisha-eyebrow {
    display: block;
    font-family: 'Frank Ruhl Libre', serif;
    color: var(--ka-gold);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.kadisha-intro {
    color: var(--ka-ink-light);
    font-size: 1.0625rem;
    margin-top: 1rem;
}

/* ===== הנחיות הלכתיות ===== */
.kadisha-halacha-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.kadisha-card {
    background: var(--ka-parchment);
    border: 1px solid var(--ka-border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(44, 40, 38, 0.08);
    transition: all .3s;
}

.kadisha-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(44, 40, 38, 0.12);
    border-color: var(--ka-gold);
}

.kadisha-section-alt .kadisha-card {
    background: var(--ka-cream);
}

.kadisha-card h3 {
    color: var(--ka-burgundy-dark);
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.kadisha-card p {
    color: var(--ka-ink-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== תעריפים ===== */
.kadisha-notice {
    background: linear-gradient(135deg, var(--ka-gold-pale), var(--ka-cream));
    border-right: 4px solid var(--ka-gold);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(44, 40, 38, 0.08);
}

.kadisha-notice strong { color: var(--ka-burgundy-dark); }

.kadisha-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(44, 40, 38, 0.12);
    background: var(--ka-parchment);
    border: 1px solid var(--ka-border);
}

.kadisha-tariffs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    min-width: 720px;
}

.kadisha-tariffs-table thead {
    background: linear-gradient(135deg, var(--ka-burgundy-dark), var(--ka-burgundy));
    color: var(--ka-cream);
}

.kadisha-tariffs-table th {
    padding: 1rem 1rem;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 600;
    border-bottom: 3px solid var(--ka-gold);
    white-space: nowrap;
}

.kadisha-tariffs-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #E8DFCC;
    color: var(--ka-ink-light);
    vertical-align: middle;
}

.kadisha-tariffs-table td:first-child { font-size: 1rem; }
.kadisha-tariffs-table td:nth-child(2),
.kadisha-tariffs-table td:nth-child(n+3) { white-space: nowrap; }

.kadisha-tariffs-table tbody tr:hover { background: var(--ka-cream); }
.kadisha-tariffs-table tbody tr:last-child td { border-bottom: none; }
.kadisha-price-free { color: #2e7d32; font-weight: 700; }

/* ===== תקנות ===== */
.kadisha-regulations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.kadisha-regulation-item {
    background: var(--ka-parchment);
    padding: 1.5rem;
    border-radius: 8px;
    border-right: 4px solid var(--ka-gold);
    box-shadow: 0 2px 8px rgba(44, 40, 38, 0.08);
    transition: all .3s;
}

.kadisha-regulation-item:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 16px rgba(44, 40, 38, 0.12);
    border-right-color: var(--ka-burgundy);
}

.kadisha-regulation-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--ka-burgundy);
    color: var(--ka-gold-light);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.kadisha-regulation-item h4 { color: var(--ka-burgundy-dark); margin-bottom: 0.5rem; }

.kadisha-regulation-item p {
    color: var(--ka-ink-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* ===== איתור נפטר ===== */
.kadisha-search-form {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--ka-sand, #d7cbb5);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44, 40, 38, 0.06);
}

.kadisha-search-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 1rem;
}

.kadisha-search-row-dates {
    grid-template-columns: 1fr 1fr;
    margin-top: 1rem;
}

@media (max-width: 720px) {
    .kadisha-search-row,
    .kadisha-search-row-dates { grid-template-columns: 1fr; }
}

.kadisha-search-field label {
    display: block;
    font-weight: 700;
    color: var(--ka-burgundy-dark);
    margin-bottom: .375rem;
    font-size: .9375rem;
}

.kadisha-search-field label .req {
    color: var(--ka-burgundy);
}

.kadisha-search-field input,
.kadisha-search-field select {
    width: 100%;
    padding: .6rem .75rem;
    font: inherit;
    border: 1px solid var(--ka-sand, #d7cbb5);
    border-radius: 4px;
    background: #fff;
}

.kadisha-search-field input:focus,
.kadisha-search-field select:focus {
    outline: none;
    border-color: var(--ka-gold);
    box-shadow: 0 0 0 3px rgba(176, 139, 79, .18);
}

.kadisha-search-field.is-disabled label {
    color: var(--ka-ink-light);
    opacity: .55;
}
.kadisha-search-field input:disabled,
.kadisha-search-field select:disabled {
    background: #f3eee3;
    color: #8a8277;
    cursor: not-allowed;
}

.kadisha-search-actions {
    margin-top: 1rem;
    text-align: center;
}

.kadisha-search-status {
    max-width: 900px;
    margin: 0 auto 1rem;
    padding: .75rem 1rem;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    min-height: 1px;
}
.kadisha-search-status:empty { padding: 0; min-height: 0; }

.kadisha-search-status.loading { background: var(--ka-parchment); color: var(--ka-burgundy-dark); }
.kadisha-search-status.success { background: #e8f5e9; color: #1b5e20; }
.kadisha-search-status.empty   { background: #fff3e0; color: #b26500; }
.kadisha-search-status.error   { background: #ffebee; color: #b71c1c; }

.kadisha-search-results {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 720px) {
    .kadisha-search-results { grid-template-columns: 1fr 1fr; }
}

.kadisha-deceased-card {
    background: #fff;
    border: 1px solid var(--ka-sand, #d7cbb5);
    border-right: 4px solid var(--ka-gold);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(44, 40, 38, 0.06);
}

.kadisha-deceased-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .25rem;
}

.kadisha-deceased-name {
    color: var(--ka-burgundy-dark);
    margin: 0;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.25rem;
    flex: 1;
}

.kadisha-deceased-name mark,
.kadisha-deceased-parents mark {
    background: rgba(176, 139, 79, 0.28);
    color: inherit;
    padding: 0 .15em;
    border-radius: 3px;
    font-weight: 700;
}

.kadisha-match-badge {
    flex-shrink: 0;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 999px;
    white-space: nowrap;
    line-height: 1.4;
}
.kadisha-match-badge.exact { background: #e8f5e9; color: #1b5e20; }
.kadisha-match-badge.close { background: #fff3e0; color: #b26500; }
.kadisha-match-badge.far   { background: #ffebee; color: #b71c1c; }

.kadisha-deceased-parents {
    color: var(--ka-ink-light);
    margin: 0 0 .75rem;
    font-size: .9375rem;
}

.kadisha-deceased-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .25rem .75rem;
    margin: 0 0 .75rem;
    font-size: .9375rem;
}

.kadisha-deceased-meta dt {
    font-weight: 700;
    color: var(--ka-burgundy);
}

.kadisha-deceased-meta dd {
    margin: 0;
    color: var(--ka-ink-light);
}

.kadisha-deceased-location {
    margin: 0;
    padding: .625rem .75rem;
    background: var(--ka-parchment);
    border-radius: 4px;
    font-size: .875rem;
    color: var(--ka-burgundy-dark);
}

.kadisha-deceased-location .l-k {
    font-weight: 700;
}

.kadisha-search-more {
    max-width: 900px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.kadisha-btn-outline-alt {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--ka-burgundy);
    border: 2px solid var(--ka-burgundy);
    border-radius: 4px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}
.kadisha-btn-outline-alt:hover {
    background: var(--ka-burgundy);
    color: var(--ka-cream);
}
.kadisha-btn-outline-alt:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* ===== טפסים להורדה ===== */
.kadisha-forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.kadisha-form-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: #fff;
    border: 1px solid var(--ka-sand, #d7cbb5);
    border-radius: 8px;
    transition: all .3s;
    color: var(--ka-burgundy-dark);
    text-decoration: none;
}

.kadisha-form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border-color: var(--ka-gold);
}

.kadisha-form-icon {
    font-size: 2.5rem;
    color: var(--ka-gold);
    margin-bottom: .5rem;
}

.kadisha-form-card h4 {
    color: var(--ka-burgundy-dark);
    margin: .25rem 0 .5rem;
    font-size: 1.0625rem;
}

.kadisha-form-card p {
    color: var(--ka-ink-light);
    font-size: .9rem;
    margin: 0 0 1rem;
}

.kadisha-form-download {
    display: inline-block;
    margin-top: auto;
    padding: .5rem 1.25rem;
    background: var(--ka-burgundy);
    color: var(--ka-cream);
    border-radius: 4px;
    font-weight: 700;
    font-size: .875rem;
}

/* ===== צור קשר ===== */
.kadisha-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.kadisha-contact-info {
    background: linear-gradient(135deg, var(--ka-burgundy-dark), var(--ka-burgundy));
    color: var(--ka-gold-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(44, 40, 38, 0.12);
}

.kadisha-contact-info h3 { color: var(--ka-gold-light); margin-bottom: 1rem; }

.kadisha-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kadisha-contact-info li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 184, 120, 0.2);
    color: var(--ka-gold-light);
}
.kadisha-contact-info li:last-child { border-bottom: none; }

.kadisha-contact-info strong {
    display: block;
    color: var(--ka-gold-pale);
    font-family: 'Frank Ruhl Libre', serif;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.kadisha-page .kadisha-contact-info a,
.kadisha-page .kadisha-contact-info a:not(.kadisha-btn):not(.kadisha-btn-submit) {
    color: var(--ka-gold-light) !important;
    direction: ltr;
    display: inline-block;
    text-decoration: none;
}
.kadisha-page .kadisha-contact-info a:hover,
.kadisha-page .kadisha-contact-info a:not(.kadisha-btn):not(.kadisha-btn-submit):hover {
    color: var(--ka-gold-pale) !important;
}

.kadisha-contact-form-wrapper {
    background: var(--ka-parchment);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--ka-border);
    box-shadow: 0 4px 16px rgba(44, 40, 38, 0.12);
}

.kadisha-contact-form-wrapper h3 { color: var(--ka-burgundy-dark); }

.kadisha-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.kadisha-form-group { margin-bottom: 1rem; }

.kadisha-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--ka-ink);
}

.kadisha-form-group .req { color: var(--ka-burgundy); }

.kadisha-form-group input,
.kadisha-form-group select,
.kadisha-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    border: 1px solid var(--ka-border);
    border-radius: 4px;
    transition: all .3s;
    direction: rtl;
    color: var(--ka-ink);
}

.kadisha-form-group input:focus,
.kadisha-form-group select:focus,
.kadisha-form-group textarea:focus {
    outline: none;
    border-color: var(--ka-gold);
    box-shadow: 0 0 0 3px rgba(176, 139, 79, 0.15);
}

.kadisha-form-group textarea { resize: vertical; min-height: 120px; }

.kadisha-btn-submit {
    width: 100%;
    background: var(--ka-burgundy);
    color: var(--ka-cream);
    border: none;
    padding: 1rem;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-top: 1rem;
}

.kadisha-btn-submit:hover {
    background: var(--ka-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(44, 40, 38, 0.12);
}

.kadisha-btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.kadisha-form-message {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.kadisha-form-message.show { display: block; }
.kadisha-form-message.success { background: #e8f5e9; color: #2e7d32; border-right: 4px solid #2e7d32; }
.kadisha-form-message.error { background: #ffebee; color: #c62828; border-right: 4px solid #c62828; }

/* ===== רספונסיבי ===== */
@media (max-width: 960px) {
    .kadisha-contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .kadisha-deceased-admin { padding: 1.25rem; }
}

/* טאבלט + פלאפון רחב */
@media (max-width: 720px) {
    .kadisha-page { font-size: 18px; line-height: 1.75; }
    .kadisha-page h3 { font-size: 1.5rem; }
    .kadisha-page h4 { font-size: 1.1875rem; }

    .kadisha-container { padding: 0 1rem; }

    /* Hero */
    .kadisha-hero { padding: 3.25rem 0 2.75rem; }
    .kadisha-hero-eyebrow {
        font-size: .9375rem;
        padding: 0.25rem 1rem;
        letter-spacing: 0.05em;
    }
    .kadisha-hero-subtitle { font-size: 1.25rem; }
    .kadisha-hero-description {
        font-size: 1.0625rem;
        line-height: 1.75;
        margin-bottom: 1.75rem;
        text-align: center !important;
        text-align-last: center !important;
    }
    .kadisha-cta-group {
        flex-direction: column;
        max-width: 340px;
        margin: 0 auto;
        gap: .75rem;
    }
    .kadisha-btn, .kadisha-btn-submit { padding: .95rem 1.25rem; width: 100%; font-size: 1.0625rem; }

    /* Sections */
    .kadisha-section { padding: 2.5rem 0; }
    .kadisha-section-header { margin-bottom: 1.75rem; }

    /* כרטיסים כלליים */
    .kadisha-card { padding: 1.25rem; }
    .kadisha-halacha-grid,
    .kadisha-regulations-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* טבלת תעריפים - הקטנה של גופן ומרווחים, גלילה אופקית נשמרת */
    .kadisha-tariffs-table { min-width: 600px; font-size: .9375rem; }
    .kadisha-tariffs-table th { padding: .75rem .625rem; font-size: .9375rem; }
    .kadisha-tariffs-table td { padding: .75rem .625rem; }
    .kadisha-tariffs-table td:first-child { font-size: 1rem; }

    .kadisha-notice { padding: 1rem 1.25rem; font-size: 1rem; }

    /* טופס חיפוש נפטר */
    .kadisha-search-form { padding: 1rem; }
    .kadisha-search-row { grid-template-columns: 1fr; gap: .75rem; }
    .kadisha-search-form label { font-size: 1rem; }
    .kadisha-search-form input,
    .kadisha-search-form select { font-size: 1rem; padding: .75rem .875rem; }

    /* תוצאות נפטר */
    .kadisha-search-results { grid-template-columns: 1fr; }
    .kadisha-deceased-card { padding: 1.125rem 1rem; }
    .kadisha-deceased-header { flex-wrap: wrap; gap: .5rem; }
    .kadisha-deceased-name { font-size: 1.1875rem; }
    .kadisha-match-badge { font-size: .75rem; padding: .2rem .55rem; }
    .kadisha-deceased-meta {
        grid-template-columns: 1fr;
        gap: .375rem;
        font-size: 1rem;
    }
    .kadisha-deceased-meta dt { margin-top: .5rem; }
    .kadisha-deceased-meta dt:first-child { margin-top: 0; }

    /* טפסים להורדה */
    .kadisha-forms-grid { grid-template-columns: 1fr; }
    .kadisha-form-card { padding: 1.25rem 1rem; }

    /* צור קשר - טופס */
    .kadisha-form-row { grid-template-columns: 1fr; }
    .kadisha-contact-info ul { font-size: 1.0625rem; }
    .kadisha-contact-form label { font-size: 1rem; }
    .kadisha-contact-form input,
    .kadisha-contact-form textarea,
    .kadisha-contact-form select { font-size: 1rem; padding: .75rem .875rem; }

    /* הודעות מערכת */
    .kadisha-form-message { padding: .875rem 1rem; font-size: 1rem; }
}

/* פלאפון קטן */
@media (max-width: 480px) {
    .kadisha-page { font-size: 17px; }
    .kadisha-page h3 { font-size: 1.375rem; }

    .kadisha-container { padding: 0 .875rem; }

    .kadisha-hero { padding: 2.5rem 0 2.25rem; }
    .kadisha-hero-description {
        font-size: 1rem;
        text-align: center !important;
        text-align-last: center !important;
    }

    .kadisha-section { padding: 2rem 0; }

    /* טבלת תעריפים - גלילה אופקית, שמירה על קריאות */
    .kadisha-tariffs-table { min-width: 520px; font-size: .875rem; }
    .kadisha-tariffs-table th { padding: .625rem .5rem; font-size: .875rem; }
    .kadisha-tariffs-table td { padding: .625rem .5rem; }
    .kadisha-tariffs-table td:first-child { font-size: .9375rem; }

    /* מיקום בקבר */
    .kadisha-deceased-location { padding: .55rem .7rem; font-size: .9375rem; }

    .kadisha-notice { padding: .875rem 1rem; font-size: .9375rem; }
}
