/*
Theme Name: Pizza Uri
Template: hello-elementor
Version: 2.0.0
Text Domain: pizza-uri
*/

/* ── GOOGLE FONT ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ───────────────────────────── */
:root {
  /* New Design System */
  --primary-blue:     #1e3a8a;
  --secondary-orange: #f97316;
  --orange-hover:     #ea580c;
  --bg-slate:         #f8fafc;
  --text-main:        #0f172a;
  --text-muted:       #475569;

  /* Mappings to old variables for backward compatibility */
  --orange:      var(--secondary-orange);
  --orange-dark: var(--orange-hover);
  --blue:        var(--primary-blue);
  --dark:        var(--text-main);
  --gray-text:   var(--text-muted);
  --gray-meta:   #999999;
  --border:      #EBEBEB;
  --bg-light:    var(--bg-slate);
  --white:       #FFFFFF;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --shadow-card: 0 1px 4px rgba(0,0,0,.08);
  --shadow-hover:0 4px 16px rgba(0,0,0,.12);
}

/* ── NEW FRANCHISE PAGE STYLES ───────────────── */
.pizza-uri-franchise {
    font-family: 'Heebo', Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    background-color: var(--bg-slate);
    -webkit-font-smoothing: antialiased;
}

.pizza-uri-franchise h1, 
.pizza-uri-franchise h2, 
.pizza-uri-franchise h3, 
.pizza-uri-franchise h4, 
.pizza-uri-franchise h5, 
.pizza-uri-franchise h6 {
    font-family: 'Heebo', Arial, sans-serif !important;
    font-weight: 700 !important;
    margin-top: 0;
}
.pizza-uri-franchise p {
    font-family: 'Heebo', Arial, sans-serif;
}

/* Hero — עמוד זכיינות (תבנית page-franchise, בלי Elementor) */
.pizza-uri-franchise .hero {
    background-color: var(--primary-blue);
    color: white;
    padding: 100px 20px;
    border-bottom: 8px solid var(--secondary-orange);
    position: relative;
    overflow: hidden;
}

.pizza-uri-franchise .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.pizza-uri-franchise .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pizza-uri-franchise .hero-image-container {
    flex: 1;
    min-width: 260px;
    max-width: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pizza-uri-franchise .hero-image-container img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--secondary-orange);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pizza-uri-franchise .hero-image-container img:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 24px 40px -8px rgba(0, 0, 0, 0.35);
}

.pizza-uri-franchise .hero-text {
    flex: 1;
    text-align: right;
}

.pizza-uri-franchise .badge {
    background-color: var(--secondary-orange);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.pizza-uri-franchise .hero h1 {
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #fff;
}

.pizza-uri-franchise .hero h1 span {
    color: #fb923c;
}

.pizza-uri-franchise .hero p {
    font-size: 1.3rem;
    margin: 0 0 30px;
    opacity: 0.9;
    max-width: 550px;
    color: #fff;
}

.pizza-uri-franchise .btn-main {
    background-color: var(--secondary-orange);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pizza-uri-franchise .btn-main:hover {
    background-color: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Stats Bar */
.pizza-uri-franchise .stats-bar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 44px 20px 48px;
    box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    position: relative;
}

.pizza-uri-franchise .stats-bar-intro {
    margin-bottom: 40px;
}

.pizza-uri-franchise .container {
    max-width: 1200px;
    margin: 0 auto;
}

.pizza-uri-franchise .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.pizza-uri-franchise .stat-item h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 5px;
}

.pizza-uri-franchise .stat-item p {
    color: var(--text-muted);
    margin: 0;
}

/* Benefits */
.pizza-uri-franchise .benefits {
    padding: 100px 20px;
}

.pizza-uri-franchise .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.pizza-uri-franchise .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.pizza-uri-franchise .section-title h2::after {
    content: "";
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), #fb923c);
}

.pizza-uri-franchise .section-title-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 16px auto 0;
    max-width: 520px;
    line-height: 1.65;
}

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

.pizza-uri-franchise .benefit-card {
    background: white;
    padding: 36px 32px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.25s ease;
    text-align: right;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.pizza-uri-franchise .benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow:
        0 20px 40px -16px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(249, 115, 22, 0.08);
}

.pizza-uri-franchise .benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #eff6ff 0%, #fff7ed 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    border: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pizza-uri-franchise .benefit-icon svg {
    flex-shrink: 0;
}

.pizza-uri-franchise .benefit-icon--pizza {
    color: var(--secondary-orange);
    background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
    border-color: rgba(249, 115, 22, 0.2);
}

.pizza-uri-franchise .benefit-icon--handshake {
    color: #1d4ed8;
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(29, 78, 216, 0.15);
}

.pizza-uri-franchise .benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.pizza-uri-franchise .benefit-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Investment */
.pizza-uri-franchise .fr-invest-section {
    margin-bottom: 100px;
    padding: 0 20px;
}

.pizza-uri-franchise .fr-invest-heading {
    color: #fb923c;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 16px;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}

.pizza-uri-franchise .fr-invest-lead {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.7;
    margin: 0 0 24px;
}

.pizza-uri-franchise .investment-box {
    background: linear-gradient(145deg, #1e3a8a 0%, #172554 55%, #1e3a8a 100%);
    border-radius: 28px;
    padding: 56px 52px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    align-items: stretch;
    position: relative;
    box-shadow:
        0 28px 56px -20px rgba(15, 23, 42, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.pizza-uri-franchise .investment-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.pizza-uri-franchise .investment-content {
    flex: 1;
    min-width: 300px;
    text-align: right;
    position: relative;
    z-index: 1;
}

.pizza-uri-franchise .investment-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    color: var(--text-main);
    padding: 40px 36px;
    border-radius: 20px;
    border-right: 6px solid var(--secondary-orange);
    text-align: right;
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.pizza-uri-franchise .investment-card h3 {
    color: var(--primary-blue);
    margin: 0 0 22px;
    font-size: 1.35rem !important;
}

.pizza-uri-franchise .fr-profile-block {
    margin-bottom: 20px;
}

.pizza-uri-franchise .fr-profile-block p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 6px 0 0;
    line-height: 1.55;
}

.pizza-uri-franchise .fr-profile-block--last {
    margin-bottom: 0;
}

.pizza-uri-franchise .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pizza-uri-franchise .check-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.55;
}

.pizza-uri-franchise .check-list li:last-child {
    margin-bottom: 0;
}

.pizza-uri-franchise .fr-list-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.25);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pizza-uri-franchise .investment-card .check-list li {
    color: var(--text-main);
}

/* Steps */
.pizza-uri-franchise .steps-container {
    padding: 100px 20px;
    background: white;
}

.pizza-uri-franchise .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    position: relative;
}

.pizza-uri-franchise .step-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 12px 8px;
}

.pizza-uri-franchise .step-item h4 {
    font-size: 1.05rem;
    margin: 0 0 8px;
    color: var(--primary-blue);
}

.pizza-uri-franchise .step-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.pizza-uri-franchise .step-number {
    width: 76px;
    height: 76px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin: 0 auto 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.12);
}

.pizza-uri-franchise .step-item:hover .step-number {
    transform: scale(1.05);
    border-color: var(--secondary-orange);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
}

/* Contact Section */
.pizza-uri-franchise .contact-section {
    padding: 100px 20px;
}

.pizza-uri-franchise .contact-grid {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.pizza-uri-franchise .contact-info {
    background: linear-gradient(165deg, #1e3a8a 0%, #172554 100%);
    color: white;
    padding: 56px 48px;
    flex: 1;
    min-width: 300px;
    text-align: right;
    position: relative;
}

.pizza-uri-franchise .contact-info::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.pizza-uri-franchise .contact-info h2,
.pizza-uri-franchise .contact-info p,
.pizza-uri-franchise .contact-info b {
    color: white;
    position: relative;
    z-index: 1;
}

.pizza-uri-franchise .contact-info-lead {
    margin: 12px 0 0;
    opacity: 0.92;
    line-height: 1.65;
    font-size: 1rem;
}

.pizza-uri-franchise .fr-contact-list {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.pizza-uri-franchise .fr-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.pizza-uri-franchise .fr-contact-row:last-child {
    margin-bottom: 0;
}

.pizza-uri-franchise .fr-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fed7aa;
}

.pizza-uri-franchise .fr-contact-icon svg {
    opacity: 0.95;
}

.pizza-uri-franchise .contact-form-wrapper {
    padding: 60px;
    flex: 2;
    min-width: 300px;
    background: #f8fafc;
    text-align: right;
}

/* Responsive */
@media (max-width: 992px) {
    .pizza-uri-franchise .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .pizza-uri-franchise .hero-text {
        text-align: center;
    }
    .pizza-uri-franchise .hero h1 { font-size: 2.8rem; }
    .pizza-uri-franchise .hero p { margin: 0 auto 30px; }
    .pizza-uri-franchise .hero-image-container img {
        max-width: 400px;
        transform: rotate(0deg);
    }
    .pizza-uri-franchise .hero-image-container img:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .pizza-uri-franchise .hero h1 { font-size: 2.2rem; }
    .pizza-uri-franchise .investment-box { padding: 30px; }
    .pizza-uri-franchise .contact-info, 
    .pizza-uri-franchise .contact-form-wrapper { padding: 30px; }
}

/* ── עמוד מפעל (תבנית page-factory) ───────────────── */
.pizza-uri-factory {
    font-family: 'Heebo', Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    background-color: #f1f5f9;
    -webkit-font-smoothing: antialiased;
}

.pizza-uri-factory h1,
.pizza-uri-factory h2,
.pizza-uri-factory h3,
.pizza-uri-factory h4 {
    font-family: 'Heebo', Arial, sans-serif !important;
    font-weight: 700 !important;
}

.pizza-uri-factory .f-hero {
    background-color: #1e3a8a;
    color: #fff;
    padding: clamp(100px, 18vw, 140px) 20px clamp(72px, 12vw, 100px);
    text-align: center;
    position: relative;
    border-bottom: 8px solid var(--secondary-orange);
    background-image:
        linear-gradient(rgb(35 110 176 / 90%), rgb(30 58 138 / 25%)),
        var(--f-hero-bg, url('https://images.unsplash.com/photo-1579751626657-72bc17010498?auto=format&fit=crop&q=80&w=1200'));
    background-size: cover;
    background-position: center;
}

.pizza-uri-factory .f-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pizza-uri-factory .f-hero-badge {
    background: rgba(255, 255, 255, 0.12);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pizza-uri-factory .f-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 16px;
    font-weight: 900;
    color: #fff;
}

.pizza-uri-factory .f-hero h1 span {
    color: var(--secondary-orange);
}

.pizza-uri-factory .f-hero p {
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

.pizza-uri-factory .f-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.pizza-uri-factory .f-intro {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.pizza-uri-factory .f-intro-text { flex: 1; text-align: right; }
.pizza-uri-factory .f-intro-image { flex: 1; text-align: center; }
.pizza-uri-factory .f-intro-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

.pizza-uri-factory .f-intro h2 {
    color: var(--primary-blue);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}

.pizza-uri-factory .f-intro-p2 b { color: var(--primary-blue); }

.pizza-uri-factory .f-products-title {
    text-align: center;
    margin-bottom: 50px;
}

.pizza-uri-factory .f-products-title h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--primary-blue);
    margin: 0 0 10px;
}

.pizza-uri-factory .f-products-title p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.05rem;
}

.pizza-uri-factory .f-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pizza-uri-factory .f-product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.pizza-uri-factory .f-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(249, 115, 22, 0.35);
}

.pizza-uri-factory .f-product-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2410c;
}

.pizza-uri-factory .f-product-img-svg svg {
    display: block;
    opacity: 0.92;
}

.pizza-uri-factory .f-product-body {
    padding: 28px;
    text-align: right;
    flex-grow: 1;
    direction: ltr;
}

.pizza-uri-factory .f-product-body h3 {
    color: var(--primary-blue);
    font-size: 1.45rem;
    margin: 0 0 12px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
}

.pizza-uri-factory .f-product-body h3::after {
    content: "";
    height: 3px;
    width: 40px;
    background: var(--secondary-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.pizza-uri-factory .f-product-body p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
}

.pizza-uri-factory .f-features {
    background: linear-gradient(165deg, #1e3a8a 0%, #172554 100%);
    color: #fff;
    padding: 64px 24px;
    margin: 80px 0;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.pizza-uri-factory .f-features h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 8px;
}

.pizza-uri-factory .f-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
    margin-top: 36px;
}

.pizza-uri-factory .f-feature-item {
    padding: 8px;
}

.pizza-uri-factory .f-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.2);
    color: #fed7aa;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pizza-uri-factory .f-feature-item h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #fff;
}

.pizza-uri-factory .f-feature-item p {
    font-size: 0.92rem;
    opacity: 0.88;
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.pizza-uri-factory .f-cta {
    background: #fff;
    padding: 64px 32px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    border: 2px dashed rgba(30, 58, 138, 0.35);
}

.pizza-uri-factory .f-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--primary-blue);
    margin: 0 0 16px;
}

.pizza-uri-factory .f-cta-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 32px;
    line-height: 1.65;
}

.pizza-uri-factory .f-btn {
    background: var(--secondary-orange);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pizza-uri-factory .f-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.35);
    color: #fff;
}

.pizza-uri-factory .f-cta-phone {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .pizza-uri-factory .f-intro {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }
    .pizza-uri-factory .f-intro-text { text-align: center; }
    .pizza-uri-factory .f-btn {
        width: 100%;
        max-width: 360px;
        box-sizing: border-box;
    }
}

/* ── GLOBAL RESET ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* Override Hello Elementor reset.css – רק כפתורים בלי מחלקות עיצוב (לא WooCommerce .button וכו') */
/* לא לדרוס: הירו, מודל סניף, פופאב מיקום, כפתורי צ'קאאוט/עגלה של WC */
[type=button]:not(.pizza-home-hero__btn):not(.bsp-modal-add-btn):not(.button):not(.pizza-popup-btn):not(.bsp-modal-qty-btn):not(.bsp-modal-close):not(.bsp-pmode-btn):not(.bsp-modal-notes-btn):not(.bsp-lb-close):not(.bsp-card-add-btn):not(.pizza-checkout-btn-next):not(.pizza-checkout-btn-back),
[type=submit]:not(.pizza-home-hero__btn):not(.button):not(.woocommerce-Button),
button:not(.pizza-home-hero__btn):not(.bsp-modal-add-btn):not(.button):not(.pizza-popup-btn):not(.bsp-modal-qty-btn):not(.bsp-modal-close):not(.bsp-pmode-btn):not(.bsp-modal-notes-btn):not(.bsp-lb-close):not(.bsp-card-add-btn):not(.pizza-checkout-btn-next):not(.pizza-checkout-btn-back) {
  background-color: transparent !important;
  border: none !important;
  color: inherit !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  white-space: normal !important;
  transition: none !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  margin: 0; padding: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Heebo', Arial, sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin-top: 0;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ── SITE WRAPPER ────────────────────────────── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); }
.site-main { background: var(--white); }

/* גוף העמוד — גובה מינימום יציב; לא מתכווץ כשיש מעט תוכן */
main#content.site-main,
#content.site-main {
	min-height: 600px;
}

/* Hello Elementor theme.css: מעל 1200px מגביל .site-main ל־1140px — רוחב מלא לתוכן ללא Elementor */
@media (min-width: 1200px) {
	.page-header .entry-title,
	.site-footer .footer-inner,
	.site-footer:not(.dynamic-footer),
	.site-header .header-inner,
	.site-header:not(.dynamic-header),
	body:not([class*=elementor-page-]) .site-main {
		max-width: 100%;
	}
}

/* ── עמוד הבית (Elementor) — ריווח בין שני כפתורים ───────────────────────
   כפתורי Inline / רוחב אוטומטי מקבלים margin-block-end: 0 מהליבה ונראים צמודים */
body.home .elementor-widget-wrap:has(> .elementor-widget-button + .elementor-widget-button) {
    gap: 14px;
}
body.home .elementor-widget-wrap:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button {
    margin-block-end: 0 !important;
}
body.home .e-con-inner:has(> .elementor-element.elementor-widget-button ~ .elementor-element.elementor-widget-button) {
    gap: 14px;
}
body.home .e-con-inner:has(> .elementor-element.elementor-widget-button ~ .elementor-element.elementor-widget-button) > .elementor-element.elementor-widget-button {
    margin-block-end: 0 !important;
}

/* Hero (ווידג'ט HTML) — שני כפתורים בשורה עם ריווח אופקי */
body.home .hero-btns {
    gap: clamp(20px, 4vw, 48px) !important;
    justify-content: center;
}

/* כפתור "הזמן עכשיו" בהירו — וידוא רקע כתום (מעל a גלובלי / reset) */
body.home a.cta-button,
body.home .cta-button {
    background-color: var(--secondary-orange) !important;
    color: #fff !important;
    border: 2px solid var(--secondary-orange) !important;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35) !important;
    text-decoration: none !important;
}
body.home a.cta-button:hover,
body.home .cta-button:hover {
    background-color: var(--orange-hover) !important;
    border-color: var(--orange-hover) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* ── WP Cafe: עגלה ריקה — טקסט מעל הכפתור (לא מצד לצד), כפתור כמו CTA בדף הבית ─ */
.wpc-minicart-wrapper .wpc-empty-cart {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    height: auto !important;
    min-height: 0 !important;
    text-align: center !important;
    padding: 16px 0 8px !important;
}

.wpc-minicart-wrapper.style2 .wpc-empty-cart {
    height: auto !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
}

.wpc-minicart-wrapper .wpc-empty-cart .cart-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    padding: 0 12px 20px !important;
    text-align: center !important;
}

.wpc-minicart-wrapper.style1 .wpc-empty-cart .cart-wrapper {
    padding-top: 24px !important;
}

.wpc-minicart-wrapper .wpc-empty-cart .wpc-woocommerce-mini-cart__empty-message {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 4px !important;
    line-height: 1.55 !important;
}

.wpc-minicart-wrapper .wpc-empty-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 22px !important;
    font-family: 'Heebo', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    text-align: center !important;
    border-radius: 999px !important;
    background-color: var(--secondary-orange) !important;
    color: #fff !important;
    border: 2px solid var(--secondary-orange) !important;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35) !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
    margin: 0 !important;
}

.wpc-minicart-wrapper .wpc-empty-btn:hover {
    background-color: var(--orange-hover) !important;
    border-color: var(--orange-hover) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.38) !important;
    transform: translateY(-1px) !important;
    text-decoration: none !important;
}

/* ── BUTTONS ─────────────────────────────────── */
.pizza-btn,
.pizza-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.pizza-btn:hover,
.pizza-btn-primary:hover { background: var(--orange-dark); color: var(--white); text-decoration: none; }

.pizza-btn-secondary {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--dark);
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.pizza-btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* ── WOOCOMMERCE SHOP PAGE ───────────────────── */
.woocommerce,
.woocommerce-page { direction: rtl; }

/* Remove WC result count / ordering bar visual weight */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  color: var(--gray-text);
}

/* ── CATEGORY TABS ───────────────────────────── */
.woocommerce .widget_product_categories,
.pizza-category-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 0 16px;
  margin-bottom: 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.pizza-category-tabs::-webkit-scrollbar { display: none; }

.pizza-cat-tab {
  display: inline-block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-text);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.pizza-cat-tab:hover { color: var(--dark); text-decoration: none; }
.pizza-cat-tab.active,
.pizza-cat-tab:focus {
  color: var(--orange);
  border-bottom-color: var(--orange);
  font-weight: 700;
}

/* ── PRODUCT GRID → HORIZONTAL CARDS ─────────── */
.woocommerce ul.products {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

/* Two-column on wide screens */
@media (min-width: 900px) {
  .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }
}

.woocommerce ul.products li.product {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 16px !important;
  border-bottom: 1px solid var(--border) !important;
  background: var(--white) !important;
  cursor: pointer;
  transition: background .12s;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover { background: #FAFAFA !important; }

/* Text block (right side in RTL = the main content) */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  font-family: 'Heebo', sans-serif !important;
  line-height: 1.3 !important;
}

.woocommerce ul.products li.product .product-description,
.woocommerce ul.products li.product p:not(.price):not(.button) {
  font-size: 13px !important;
  color: var(--gray-text) !important;
  margin: 0 0 8px !important;
  line-height: 1.45 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.woocommerce ul.products li.product .price {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  font-family: 'Heebo', sans-serif !important;
}
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }
.woocommerce ul.products li.product .price del { color: var(--gray-meta) !important; font-size: 13px !important; }

/* Product image — fixed size, rounded, left side (visually) */
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail,
.woocommerce ul.products li.product img {
  width: 96px !important;
  height: 96px !important;
  min-width: 96px !important;
  object-fit: cover !important;
  border-radius: var(--radius-md) !important;
  margin: 0 !important;
  order: -1;
}

/* Text content flex-grows */
.woocommerce ul.products li.product .pizza-product-text {
  flex: 1;
  min-width: 0;
}

/* Add to cart button — small orange circle */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  background: var(--orange) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  font-size: 22px !important;
  line-height: 30px !important;
  text-align: center !important;
  min-width: unset !important;
  margin: 0 !important;
  flex-shrink: 0;
  font-family: 'Heebo', sans-serif !important;
  transition: background .15s, transform .1s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--orange-dark) !important;
  transform: scale(1.08) !important;
}

/* ── SINGLE PRODUCT PAGE ─────────────────────── */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 32px;
  max-width: 1100px;
  margin: 0 auto;
  direction: rtl;
}
@media (max-width: 768px) {
  .woocommerce div.product { grid-template-columns: 1fr; padding: 16px; gap: 24px; }
}

.woocommerce div.product .woocommerce-product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.woocommerce div.product .entry-summary h1.product_title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.woocommerce div.product p.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}

.woocommerce div.product .single_add_to_cart_button {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  width: 100% !important;
  transition: background .15s !important;
}
.woocommerce div.product .single_add_to_cart_button:hover { background: var(--orange-dark) !important; }

/* ── CHECKOUT & CART ─────────────────────────── */
.woocommerce .cart-collaterals,
.woocommerce-cart .woocommerce {
  direction: rtl;
  font-family: 'Heebo', sans-serif;
}

.woocommerce table.shop_table {
  border: none !important;
  border-collapse: collapse !important;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 14px 8px !important;
  font-family: 'Heebo', sans-serif !important;
}
.woocommerce table.shop_table th { font-weight: 700; font-size: 14px; color: var(--gray-text); }

.woocommerce button[name="apply_coupon"],
.woocommerce button[name="update_cart"],
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--orange) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: 'Heebo', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 13px 24px !important;
}

/* ── CHECKOUT FORM ───────────────────────────── */
/* עמוד תשלום: גובה מלא, טופס במרכז (לא תודה / תשלום להזמנה) */
html:has(body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay)) {
  height: 100%;
}
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) {
  min-height: 100%;
  min-height: 100dvh;
  margin: 0;
  display: flex;
  flex-direction: column;
}
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) #content.site-main,
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) main#content.site-main,
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) main#content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: safe center;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  padding: clamp(16px, 4vh, 48px) max(16px, env(safe-area-inset-right, 0px), env(safe-area-inset-left, 0px));
}
/* כותרת עמוד (H1) שוברת מרכוז אנכי — מוסתרת חזותית בלבד */
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) main#content > .page-header {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) #content.site-main > .page-content,
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) main#content.site-main > .page-content,
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) main#content > .page-content {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
}
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) main#content.site-main > .elementor,
body.woocommerce-checkout:not(.woocommerce-order-received):not(.woocommerce-order-pay) main#content > .elementor {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
}

.woocommerce-checkout {
  direction: rtl;
  font-family: 'Heebo', sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
  width: 100%;
  box-sizing: border-box;
}

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  font-family: 'Heebo', sans-serif !important;
  font-size: 15px !important;
  padding: 10px 14px !important;
  transition: border-color .2s !important;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus { border-color: var(--orange) !important; outline: none !important; box-shadow: none !important; }

.woocommerce-checkout #place_order {
  background: var(--orange) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  padding: 15px 32px !important;
  width: 100% !important;
  font-family: 'Heebo', sans-serif !important;
}

/* צ'קאאוט בלוקים (Woo Blocks): הסתרת טופס קופון אם עדיין מוצג */
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  display: none !important;
}

/* מעטפת שלבי צ'קאאוט — גלילה כשהתוכן גבוה (אל תדחוף את הכפתורים מחוץ למסך) */
.pizza-checkout-steps {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  box-sizing: border-box;
  padding: 16px 12px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* צ'קאאוט קלאסי – שלב סיכום */
.pizza-checkout-step-card {
  background: #fff;
  border: 1.5px solid var(--border, #e5e5e5);
  border-radius: var(--radius-md, 12px);
  padding: 24px 20px;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.pizza-checkout-step-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark, #1a1a1a);
}
/* טבלת סיכום סל בשלב 1 (מוצרים, משלוח, סה״כ) */
.pizza-checkout-summary-order {
  margin: 0 0 20px;
}
.pizza-checkout-summary-order .pizza-checkout-summary-table {
  width: 100%;
  border-collapse: collapse;
  background: #fafafa;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  font-size: 14px;
}
.pizza-checkout-summary-order .pizza-checkout-summary-table th,
.pizza-checkout-summary-order .pizza-checkout-summary-table td {
  padding: 10px 12px;
  text-align: right;
  border-bottom: 1px solid var(--border, #e8e8e8);
}
.pizza-checkout-summary-order .pizza-checkout-summary-table thead th {
  background: #f0f0f0;
  font-weight: 700;
  font-size: 13px;
  color: #555;
}
.pizza-checkout-summary-order .pizza-checkout-summary-table .order-total th,
.pizza-checkout-summary-order .pizza-checkout-summary-table .order-total td {
  font-size: 16px;
  font-weight: 800;
  border-bottom: none;
}
/* WP Cafe — שורת מיקום כפולה בצ'קאאוט (סניף מנוהל בפופאב Pizza Uri) */
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr:has(.wpc-checkout-store-selector),
body.woocommerce-checkout .pizza-checkout-summary-table tr:has(.wpc-checkout-store-selector) {
  display: none !important;
}
.pizza-checkout-summary-fulfillment {
  margin-top: 4px;
}
.pizza-checkout-summary-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  direction: rtl;
  text-align: right;
}
.pizza-checkout-summary-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.45;
}
.pizza-cs-k { color: #666; font-weight: 600; margin-left: 6px; }
.pizza-cs-v { color: #1a1a1a; }
.pizza-checkout-summary-error {
  color: #b91c1c;
  font-size: 14px;
  margin: 0 0 16px;
  font-weight: 600;
}
.pizza-checkout-open-branch {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto 12px;
  box-sizing: border-box;
  padding: 12px 20px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm, 8px) !important;
  border: 1.5px solid var(--border, #e5e5e5) !important;
  background: #f8fafc !important;
  color: var(--dark, #1a1a1a) !important;
}
.pizza-checkout-btn-next,
.pizza-checkout-btn-back {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto 12px;
}
.pizza-checkout-btn-next {
  padding: 15px 24px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}
.pizza-checkout-btn-back {
  background: #f5f5f5 !important;
  color: #333 !important;
  margin-bottom: 20px !important;
}
.pizza-checkout-field-locked {
  background: #f8f8f8 !important;
  color: #444 !important;
  cursor: not-allowed !important;
}

/* ── NOTICES / ALERTS ────────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: 'Heebo', sans-serif !important;
  border-radius: var(--radius-md) !important;
  direction: rtl !important;
}
.woocommerce-message { border-top-color: var(--orange) !important; }

/* ── FRANCHISE FORM ──────────────────────────── */
.pizza-franchise-form { max-width: 680px; margin: 32px auto; font-family: 'Heebo', sans-serif; }
.pizza-franchise-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.pizza-franchise-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.pizza-franchise-form .form-group.full-width { grid-column: 1/-1; }
.pizza-franchise-form label { font-weight: 600; font-size: 14px; color: var(--dark); }
.pizza-franchise-form input,
.pizza-franchise-form select,
.pizza-franchise-form textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  width: 100%;
  transition: border-color .2s;
}
.pizza-franchise-form input:focus,
.pizza-franchise-form select:focus,
.pizza-franchise-form textarea:focus { border-color: var(--orange); outline: none; }
.pizza-franchise-form button[type=submit] {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  width: 100%;
  transition: background .15s;
}
.pizza-franchise-form button[type=submit]:hover { background: var(--orange-dark); }
.pizza-form-success { background: #F0FDF4; border: 1px solid #22C55E; border-radius: var(--radius-md); padding: 16px; color: #166534; font-weight: 600; text-align: center; }
@media (max-width: 600px) { .pizza-franchise-form .form-row { grid-template-columns: 1fr; } }

/* ── BRANCH SINGLE PAGE ──────────────────────── */
.branch-single-page { direction: rtl; font-family: 'Heebo', sans-serif; max-width: 1000px; margin: 0 auto; padding: 0 20px 60px; }
.branch-hero { background: var(--dark); color: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 40px 32px 36px; margin-bottom: 32px; }
.branch-hero h1 { font-size: clamp(26px,5vw,46px); font-weight: 900; margin: 0 0 12px; color: var(--white); }
.branch-status-badge { display: inline-block; padding: 5px 16px; border-radius: 30px; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.branch-status-badge.open { background: #22C55E; color: var(--white); }
.branch-status-badge.closed { background: #EF4444; color: var(--white); }
.branch-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
@media (max-width: 760px) { .branch-grid { grid-template-columns: 1fr; } }
.branch-card-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 20px; }
.branch-card-section h2 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.info-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f3f4f6; font-size: 15px; }
.info-item:last-child { border-bottom: none; }
.info-item .icon { font-size: 18px; line-height: 1.4; flex-shrink: 0; }
.info-item .value a { color: var(--blue); font-weight: 600; }
.btn-action { text-align: center; padding: 10px 14px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; font-family: 'Heebo', sans-serif; text-decoration: none; transition: opacity .15s; }
.btn-waze { background: #33CCFF; color: var(--dark); }
.btn-phone { background: var(--blue); color: var(--white); }
.order-cta-box { background: var(--orange); border-radius: var(--radius-md); padding: 24px; text-align: center; color: var(--white); margin-bottom: 20px; }
.order-cta-box h3 { font-size: 20px; font-weight: 900; margin: 0 0 8px; }
.btn-order-now { display: block; background: var(--white); color: var(--orange); font-weight: 900; font-size: 17px; padding: 13px; border-radius: var(--radius-sm); text-decoration: none; font-family: 'Heebo', sans-serif; }
.phone-only-box { background: #FFF7ED; border: 1px solid var(--orange); border-radius: var(--radius-md); padding: 16px; text-align: center; margin-bottom: 20px; }
.branch-breadcrumb { font-size: 14px; color: var(--gray-text); padding: 14px 0; direction: rtl; }
.branch-breadcrumb a { color: var(--blue); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr.today td { font-weight: 700; color: var(--orange); }
.hours-table td { padding: 8px 4px; font-size: 14px; }
.hours-table .hours-time { color: var(--blue); text-align: left; direction: ltr; }
.hours-table .closed-day { color: #EF4444; }
.features-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.features-list li { background: var(--bg-light); border-radius: 30px; padding: 5px 14px; font-size: 13px; color: var(--dark); font-weight: 500; }

/* ── CHECKOUT BRANCH NOTICE ──────────────────── */
.pizza-selected-branch-notice { background: #FFF7ED; border: 1px solid var(--orange); border-radius: var(--radius-md); padding: 12px 16px; margin-bottom: 20px; font-size: 15px; direction: rtl; }
.pizza-no-branch { background: #FEF3C7; }

/* ── FACTORY STORE ───────────────────────────── */
.factory-price-hidden { color: var(--gray-meta); font-style: italic; font-size: 14px; }
.factory-price-hidden a { color: var(--blue); }

/* ── RESPONSIVE UTILITIES ────────────────────── */
@media (max-width: 600px) {
  .woocommerce ul.products li.product { padding: 12px !important; gap: 12px !important; }
  .woocommerce ul.products li.product img { width: 80px !important; height: 80px !important; min-width: 80px !important; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 15px !important; }
}

/* ── PRODUCT CARD SPECIFICS ──────────────────── */
.pizza-product-card {
  position: relative;
}
.pizza-card-link {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  text-decoration: none !important;
  color: inherit !important;
}
.pizza-product-text {
  flex: 1;
  min-width: 0;
}
.pizza-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.pizza-product-price .amount {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.pizza-no-image {
  width: 96px;
  height: 96px;
  min-width: 96px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

/* ── SHOP WRAP ───────────────────────────────── */
.pizza-shop-wrap {
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Heebo', sans-serif;
}
.pizza-products-area {
  padding: 0 16px 40px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MY ACCOUNT – Pizza Uri branded
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Page wrapper ───────────────────────────────────────────────────────── */
.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 60px;
    font-family: 'Heebo', sans-serif;
    box-sizing: border-box;
}
/* גריד על עטיפה פנימית — תמיד שני ילדים (ניווט + תוכן), גם כש-Elementor עוטף את השורטקוד */
.woocommerce-account.logged-in .woocommerce > .pzu-account-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    align-items: stretch;
    direction: rtl;
    text-align: right;
}
.woocommerce-account.logged-in .pzu-account-layout .woocommerce-MyAccount-content {
    order: 1;
    min-width: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
}
.woocommerce-account.logged-in .pzu-account-layout .pzu-account-nav {
    order: 2;
}
@media (min-width: 769px) {
    .woocommerce-account.logged-in .woocommerce > .pzu-account-layout {
        display: grid;
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        gap: 28px;
        align-items: start;
    }
    .woocommerce-account.logged-in .pzu-account-layout .woocommerce-MyAccount-content,
    .woocommerce-account.logged-in .pzu-account-layout .pzu-account-nav {
        order: unset;
    }
}
/* Elementor / מרכוז — לא למרכז את אזור החשבון */
.woocommerce-account .elementor-widget-shortcode .woocommerce,
.woocommerce-account .elementor-widget-container .woocommerce {
    text-align: right;
}
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        padding: 20px 16px 40px;
    }
}
/* Subtle page background when viewing account (logged in) */
body.woocommerce-account.logged-in {
    background-color: var(--bg-slate, #f8fafc);
}

/* ── Sidebar nav ────────────────────────────────────────────────────────── */
.pzu-account-nav {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    overflow: hidden;
    position: sticky;
    top: 100px;
    align-self: start;
}
@media (max-width: 768px) {
    .pzu-account-nav {
        position: relative;
        top: auto;
    }
}
.pzu-account-nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.pzu-account-nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background .18s, color .18s;
    border-inline-start: 3px solid transparent;
}
.pzu-account-nav ul li a:hover {
    background: #fff8f0;
    color: var(--orange, #E88A12);
}
.pzu-account-nav ul li.is-active a,
.pzu-account-nav ul li.woocommerce-MyAccount-navigation-link--active a {
    background: #fff3e0;
    color: var(--orange, #E88A12);
    border-inline-start-color: var(--orange, #E88A12);
    font-weight: 700;
}
.pzu-account-nav ul li a:focus-visible {
    outline: 2px solid var(--orange, #E88A12);
    outline-offset: -2px;
}
.pzu-nav-icon {
    width: 22px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: .75;
}
.pzu-account-nav ul li.is-active .pzu-nav-icon,
.pzu-account-nav ul li.woocommerce-MyAccount-navigation-link--active .pzu-nav-icon {
    opacity: 1;
}
/* Logout item – red tint */
.pzu-account-nav ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #e53935;
    margin-top: 4px;
    border-top: 1px solid #f5f5f5;
}
.pzu-account-nav ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #fff5f5;
}

/* ── Dashboard ──────────────────────────────────────────────────────────── */
.pzu-dashboard {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

/* Greeting card */
.pzu-dash-greeting {
    background: linear-gradient(135deg, var(--orange, #E88A12) 0%, #f5a623 100%);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.pzu-dash-avatar {
    flex-shrink: 0;
}
.pzu-dash-avatar img,
.pzu-avatar-img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.5);
    display: block;
}
.pzu-dash-hello {
    flex: 1;
    min-width: 0;
    text-align: right;
}
.pzu-dash-hello h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px;
    color: #fff;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.pzu-dash-hello p {
    font-size: 14px;
    opacity: .9;
    margin: 0;
    color: #fff;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.pzu-dash-logout {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .18s;
    white-space: nowrap;
    flex-shrink: 0;
}
.pzu-dash-logout:hover {
    background: rgba(255,255,255,.35);
    color: #fff;
}
@media (max-width: 600px) {
    .pzu-dash-greeting { flex-wrap: wrap; }
    .pzu-dash-logout { margin-top: 8px; }
}

/* Stat cards */
.pzu-dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    width: 100%;
}
@media (max-width: 600px) {
    .pzu-dash-stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}
.pzu-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.pzu-stat-icon { font-size: 28px; margin-bottom: 10px; }
.pzu-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.pzu-stat-val .woocommerce-Price-amount { font-size: 20px; font-weight: 800; color: #1a1a1a; }
.pzu-stat-lbl { font-size: 13px; color: #888; }

/* Quick links */
.pzu-dash-quick {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}
.pzu-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: border-color .18s, color .18s, background .18s;
}
.pzu-quick-link:hover {
    border-color: var(--orange, #E88A12);
    color: var(--orange, #E88A12);
}
.pzu-quick-link--orange {
    background: var(--orange, #E88A12);
    border-color: var(--orange, #E88A12);
    color: #fff !important;
}
.pzu-quick-link--orange:hover {
    background: #d07a0e;
    border-color: #d07a0e;
    color: #fff !important;
}

/* ── Orders table ───────────────────────────────────────────────────────── */
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    font-family: 'Heebo', sans-serif;
}
.woocommerce-account table.shop_table thead th {
    background: #f7f7f7;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-align: right;
    border-bottom: 2px solid #eee;
}
.woocommerce-account table.shop_table tbody td {
    padding: 16px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f2f2f2;
    text-align: right;
    vertical-align: middle;
}
.woocommerce-account table.shop_table tbody tr:last-child td { border-bottom: none; }
.woocommerce-account table.shop_table .button,
.woocommerce-account table.shop_table a.button {
    background: var(--orange, #E88A12) !important;
    color: #fff !important;
    border: none;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.woocommerce-account table.shop_table .button:hover {
    background: #d07a0e !important;
}

/* Order status badges */
.woocommerce-account .order-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}
.woocommerce-account .order-status.status-completed { background: #dcfce7; color: #166534; }
.woocommerce-account .order-status.status-processing { background: #fff3cd; color: #856404; }
.woocommerce-account .order-status.status-pending    { background: #e8f4fd; color: #1e6aa5; }
.woocommerce-account .order-status.status-cancelled  { background: #fee2e2; color: #991b1b; }
.woocommerce-account .order-status.status-on-hold    { background: #f5e6ff; color: #6b21a8; }
.woocommerce-account .order-status.status-refunded   { background: #f5f5f5; color: #666; }

/* ── עמוד כתובות (רשימה: חיוב + משלוח) ─────────────────────────────────── */
.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type:has(+ .woocommerce-Addresses),
.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type:has(+ .woocommerce-Address) {
    color: var(--text-muted, #475569);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 20px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid var(--border, #e8e8e8);
    box-shadow: 0 1px 8px rgba(0,0,0,.05);
    max-width: 100%;
}
.woocommerce-account .woocommerce-Addresses.addresses,
.woocommerce-account .u-columns.woocommerce-Addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: both;
}
.woocommerce-account .woocommerce-Addresses::after,
.woocommerce-account .woocommerce-Addresses::before {
    display: none !important;
}
.woocommerce-account .woocommerce-Addresses .woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-Address {
    float: none !important;
    width: auto !important;
    max-width: none;
    margin: 0 !important;
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px 24px;
    border: 1.5px solid var(--border, #e8e8e8);
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    box-sizing: border-box;
}
.woocommerce-account .woocommerce-MyAccount-content:not(:has(.woocommerce-Addresses)) > .woocommerce-Address {
    max-width: 560px;
}
.woocommerce-account .woocommerce-Address-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}
.woocommerce-account .woocommerce-Address-title h2 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--dark, #1a1a1a);
    font-family: 'Heebo', sans-serif;
}
.woocommerce-account .woocommerce-Address-title .edit {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange, #E88A12) !important;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 999px;
    border: 2px solid var(--orange, #E88A12);
    background: #fffaf3;
    transition: background .18s, color .18s;
}
.woocommerce-account .woocommerce-Address-title .edit:hover {
    background: var(--orange, #E88A12);
    color: #fff !important;
}
.woocommerce-account .woocommerce-Address address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
    color: #3f3f3f;
    margin: 0;
    text-align: right;
    font-family: 'Heebo', sans-serif;
}
@media (max-width: 720px) {
    .woocommerce-account .woocommerce-Addresses.addresses,
    .woocommerce-account .u-columns.woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

/* ── Account forms ──────────────────────────────────────────────────────── */
.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields,
.woocommerce-account form.edit-account,
.woocommerce-account form.edit-address {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.woocommerce-account .woocommerce-form-row label,
.woocommerce-account .form-row label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
    display: block;
}
.woocommerce-account .woocommerce-form-row input,
.woocommerce-account .form-row input[type="text"],
.woocommerce-account .form-row input[type="email"],
.woocommerce-account .form-row input[type="password"],
.woocommerce-account .form-row select {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: 'Heebo', sans-serif;
    color: #1a1a1a;
    background: #fafafa;
    transition: border-color .2s;
    box-sizing: border-box;
}
.woocommerce-account .form-row input:focus,
.woocommerce-account .form-row select:focus {
    outline: none;
    border-color: var(--orange, #E88A12);
    background: #fff;
}
.woocommerce-account .woocommerce-Button,
.woocommerce-account .button[name="save_account_details"],
.woocommerce-account .button[name="saveaddress"],
.woocommerce-account button[type="submit"] {
    background: var(--orange, #E88A12) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: 'Heebo', sans-serif !important;
    cursor: pointer;
    transition: background .2s !important;
    margin-top: 8px;
}
.woocommerce-account button[type="submit"]:hover {
    background: #d07a0e !important;
}

/* ── Headings inside account ────────────────────────────────────────────── */
.woocommerce-account .woocommerce > div > h2,
.woocommerce-account .woocommerce > div > h3,
.woocommerce-account .woocommerce-column__title,
.woocommerce-account h2.woocommerce-column__title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
    font-family: 'Heebo', sans-serif;
}

/* ── Login / Register page ──────────────────────────────────────────────── */
.woocommerce-account:not(.logged-in) .woocommerce {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
}
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .woocommerce-form-register h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
}
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    padding: 0 !important;
}
.woocommerce-account .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
@media (max-width: 600px) {
    .woocommerce-account .col2-set { grid-template-columns: 1fr; }
}
/* Lost password link */
.woocommerce-account .woocommerce-LostPassword a {
    color: var(--orange, #E88A12);
    font-size: 13px;
}

/* ── View order ─────────────────────────────────────────────────────────── */
.woocommerce-account .woocommerce-order-details,
.woocommerce-account .woocommerce-customer-details {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    margin-bottom: 24px;
}
.woocommerce-account .woocommerce-order-details__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

/* ── Notices ────────────────────────────────────────────────────────────── */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
    border-radius: 10px;
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ── Grid children / ביטול layout קלאסי של WC (30% / 68% + float) ───────── */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account nav.woocommerce-MyAccount-navigation {
    float: none !important;
    width: auto !important;
    max-width: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    float: none !important;
    min-width: 0;
    width: auto !important;
    max-width: none;
    margin-inline: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   OVERRIDE: Hello Elementor reset.css – neutralise #c36 pink button default
   ═══════════════════════════════════════════════════════════════════════════ */

/* Specific overrides for WooCommerce buttons – solid orange */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .cart_totals .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background-color: #E88A12 !important;
    border-color: #E88A12 !important;
    color: #fff !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background-color: #d07a0e !important;
    border-color: #d07a0e !important;
    color: #fff !important;
}

/* Alt/secondary WC buttons – outlined blue */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: #2D6DB5 !important;
    border-color: #2D6DB5 !important;
    color: #fff !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background-color: #245a9e !important;
    border-color: #245a9e !important;
}

/* Links – override #c36 default link color */
a { color: #2D6DB5; }
a:hover, a:active { color: #E88A12; }

/* ═══════════════════════════════════════════════════════════════════════════
   WooCommerce — עמוד תודה (הזמנה התקבלה)
   ═══════════════════════════════════════════════════════════════════════════ */
.woocommerce .pizza-thankyou-notice.woocommerce-notice--success,
.woocommerce-notice.pizza-thankyou-notice.woocommerce-notice--success {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: inherit !important;
	padding: clamp(0.5rem, 2vw, 1.25rem) 16px clamp(1rem, 3vw, 2rem) !important;
	margin: 0 auto 1rem !important;
	max-width: 720px;
	text-align: center;
}

.woocommerce .pizza-thankyou-title {
	font-family: 'Heebo', sans-serif;
	font-size: clamp(1.85rem, 5.5vw, 2.65rem);
	font-weight: 800;
	color: var(--secondary-orange);
	margin: 0 0 0.25em;
	line-height: 1.15;
	letter-spacing: -0.03em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.woocommerce .pizza-thankyou-subtitle {
	font-family: 'Heebo', sans-serif;
	font-size: clamp(1.3rem, 3.8vw, 1.75rem);
	font-weight: 800;
	color: var(--secondary-orange);
	margin: 0;
	line-height: 1.25;
	letter-spacing: -0.02em;
	opacity: 0.95;
	padding-bottom: 0.15em;
	border-bottom: 1px solid rgba(249, 115, 22, 0.28);
	display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WP Cafe — עגלה צדדית: למטה במקום ממורכז באמצע המסך (ברירת מחדל של התוסף)
   ═══════════════════════════════════════════════════════════════════════════ */
/*
 * WP Cafe: עמודי עגלה/תשלום מקבלים display:none על:
 * - wpc-divi-builder-support.css → .wpc_cart_block
 * - wpc-public.css → .wpc-cart_main_block + body.woocomerce-layout-override-enable (מספיק להסתיר את כל העטיפה)
 */
body.woocommerce-checkout .wpc_cart_block,
body.woocommerce-cart .wpc_cart_block {
	display: block !important;
}

/* המעטפת המלאה (style1+2) — אותה מחלקה מהתוסף; ללא זה העגלה "נעלמת" גם אחרי דריסת .wpc_cart_block */
body.woocomerce-layout-override-enable.woocommerce-checkout .wpc-cart_main_block,
body.woocomerce-layout-override-enable.woocommerce-cart .wpc-cart_main_block {
	display: block !important;
}

/* גיבוי ללא מחלקת layout של התוסף */
body.woocommerce-checkout .wpc-cart_main_block,
body.woocommerce-cart .wpc-cart_main_block {
	display: block !important;
}

.wpc_cart_block {
	top: auto !important;
	bottom: max(20px, env(safe-area-inset-bottom, 0px)) !important;
	transform: none !important;
}

.wpc_cart_block .wpc_cart_icon {
	top: auto !important;
	bottom: 0 !important;
	transform: none !important;
}

/* WP Cafe — כפתור מיני-סל: עיגול בולט + בועת כמות מעל האייקון */
.wpc_cart_block .wpc_cart_icon,
.wpc-minicart-wrapper .wpc_cart_icon {
	width: 58px !important;
	height: 58px !important;
	min-width: 58px !important;
	max-height: none !important;
	padding: 0 !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	overflow: visible !important;
	background: linear-gradient(145deg, #f0bc8a 0%, #d9895c 100%) !important;
	border: 2px solid rgba(255, 255, 255, 0.45) !important;
	box-shadow:
		0 8px 28px rgba(216, 137, 92, 0.45),
		0 2px 8px rgba(0, 0, 0, 0.12) !important;
	color: #fff !important;
	text-align: center !important;
}

.wpc_cart_block .wpc_cart_icon:hover,
.wpc-minicart-wrapper .wpc_cart_icon:hover {
	filter: brightness(1.06);
	box-shadow:
		0 10px 32px rgba(216, 137, 92, 0.55),
		0 2px 10px rgba(0, 0, 0, 0.14) !important;
}

.wpc_cart_block .wpc_cart_icon i,
.wpc-minicart-wrapper .wpc_cart_icon i {
	font-size: 24px !important;
	line-height: 1 !important;
	color: #fff !important;
}

/* בועת מונה — משמאל לעיגול (מעט מעל הקצה) */
.wpc_cart_block .wpc_cart_icon .basket-item-count,
.wpc-minicart-wrapper .wpc_cart_icon .basket-item-count {
	position: absolute !important;
	top: -6px !important;
	left: -4px !important;
	right: auto !important;
	margin: 0 !important;
	padding: 0 7px !important;
	min-width: 22px !important;
	min-height: 22px !important;
	height: auto !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	transform: none !important;
	background: #dc2626 !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	font-family: 'Heebo', sans-serif !important;
	border-radius: 999px !important;
	border: 2px solid #fff !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28) !important;
	vertical-align: unset !important;
	z-index: 3 !important;
}

.wpc_cart_block .wpc_cart_icon .wpc-mini-cart-count,
.wpc_cart_block .wpc_cart_icon .cart-items-count,
.wpc-minicart-wrapper .wpc_cart_icon .wpc-mini-cart-count,
.wpc-minicart-wrapper .wpc_cart_icon .cart-items-count {
	display: inline !important;
	color: inherit !important;
	font: inherit !important;
	font-weight: 800 !important;
}

/* כשהעגלה ריקה — להסתיר בועה (אם התוסף משאיר 0) */
.wpc_cart_block .wpc_cart_icon .basket-item-count:empty,
.wpc-minicart-wrapper .wpc_cart_icon .basket-item-count:empty {
	display: none !important;
}

.wpc_cart_block .wpc_cart_icon .wpc-mini-cart-count:empty,
.wpc-minicart-wrapper .wpc_cart_icon .wpc-mini-cart-count:empty {
	display: none !important;
}

/* הודעת "מוצר נוסף" — לא לסתור את העיגול */
.wpc_cart_block .wpc_cart_icon .wpc-cart-message,
.wpc-minicart-wrapper .wpc_cart_icon .wpc-cart-message {
	position: absolute !important;
	bottom: calc(100% + 10px) !important;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
	max-width: min(260px, 70vw) !important;
	white-space: normal !important;
	text-align: center !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	padding: 8px 12px !important;
	border-radius: 10px !important;
	background: rgba(26, 26, 46, 0.92) !important;
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
	z-index: 4 !important;
	pointer-events: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MINI-CART POPUP – fix reset.css #c36 bleeding into Elementor cart widget
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Cart popup container ── */
.elementor-menu-cart__main,
.elementor-menu-cart__container,
.widget_shopping_cart_content {
    direction: rtl;
    font-family: 'Heebo', sans-serif !important;
}

/* ── Product name ── */
.elementor-menu-cart__product-name a,
.elementor-menu-cart__product-name {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-decoration: none !important;
}
.elementor-menu-cart__product-name a:hover {
    color: #E88A12 !important;
}

/* ── Product price ── */
.elementor-menu-cart__product-price,
.elementor-menu-cart__product-price .amount,
.elementor-menu-cart__product-price .woocommerce-Price-amount {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

/* ── Quantity +/- buttons – override the #c36 reset ── */
.woocommerce-cart-form .quantity input.qty,
.elementor-menu-cart__main .quantity input.qty,
.woocommerce .quantity input.qty {
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 6px !important;
    color: #1a1a1a !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: 'Heebo', sans-serif !important;
    width: 50px !important;
    padding: 6px 4px !important;
    background: #fff !important;
}

/* +/- step buttons */
.woocommerce .quantity .qty-minus,
.woocommerce .quantity .qty-plus,
.elementor-menu-cart__main button.minus,
.elementor-menu-cart__main button.plus,
.woocommerce button.minus,
.woocommerce button.plus,
[class*="minus"], [class*="plus"] {
    background: #f5f5f5 !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 6px !important;
    color: #1a1a1a !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background .15s !important;
}
[class*="minus"]:hover,
[class*="plus"]:hover {
    background: #E88A12 !important;
    border-color: #E88A12 !important;
    color: #fff !important;
}

/* ── Remove item button (trash icon) ── */
.elementor-menu-cart__product .remove,
.woocommerce-mini-cart .remove,
.woocommerce .remove {
    color: #E88A12 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    opacity: .7;
}
.elementor-menu-cart__product .remove:hover,
.woocommerce-mini-cart .remove:hover {
    color: #e53935 !important;
    opacity: 1;
}

/* ── Subtotal row ── */
.elementor-menu-cart__subtotal,
.woocommerce-mini-cart__total,
.woocommerce-mini-cart__total strong {
    color: #1a1a1a !important;
    font-weight: 800 !important;
    font-size: 16px !important;
}
.woocommerce-mini-cart__total .amount {
    color: #E88A12 !important;
    font-weight: 800 !important;
    font-size: 18px !important;
}

/* ── Footer buttons (View Cart / Checkout) ── */
.elementor-menu-cart__footer-buttons .elementor-button,
.elementor-menu-cart__footer-buttons a.elementor-button,
.woocommerce-mini-cart__buttons a {
    border-radius: 8px !important;
    font-family: 'Heebo', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 12px 20px !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    transition: opacity .2s, transform .1s !important;
    border: none !important;
}
.elementor-menu-cart__footer-buttons a.elementor-button--view-cart,
.woocommerce-mini-cart__buttons a.button:not(.checkout) {
    background: #f0f4ff !important;
    color: #2D6DB5 !important;
    border: 1.5px solid #c8dff0 !important;
}
.elementor-menu-cart__footer-buttons a.elementor-button--checkout,
.woocommerce-mini-cart__buttons a.checkout {
    background: #E88A12 !important;
    color: #fff !important;
}
.elementor-menu-cart__footer-buttons .elementor-button:hover,
.woocommerce-mini-cart__buttons a:hover {
    opacity: .88 !important;
    transform: translateY(-1px) !important;
}

/* ── Empty cart message ── */
.woocommerce-mini-cart__empty-message {
    color: #888 !important;
    font-size: 15px !important;
    text-align: center !important;
    padding: 20px 0 !important;
}

/* ── Cart toggle button (the icon in the header) ── */
.elementor-menu-cart__toggle .elementor-button,
.elementor-widget-woocommerce-menu-cart .elementor-menu-cart__toggle .elementor-button {
    background-color: #E88A12 !important;
    border-color: #E88A12 !important;
    color: #fff !important;
}
.elementor-menu-cart__toggle .elementor-button:hover {
    background-color: #d07a0e !important;
    border-color: #d07a0e !important;
}

/* ── Cart count badge ── */
.elementor-menu-cart__toggle .elementor-button-text,
.elementor-menu-cart__toggle .elementor-button-icon {
    color: #fff !important;
}

/* ── Site Footer ──────────────────────────────────────────── */
.pizza-site-footer {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
    direction: rtl;
}
.pizza-site-footer__inner {
    max-width: 800px;
    margin: 0 auto;
}
.pizza-site-footer__logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.pizza-site-footer__logo span {
    color: var(--secondary-orange);
}
.pizza-site-footer__copy {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}
