/*
Theme Name: Pizza De Leon
Theme URI: https://pizzadeleon.com/
Author: Pizza De Leon
Description: Lightweight custom WordPress theme built specifically for Pizza De Leon.
Version: 1.0.51
Text Domain: pizza-de-leon
*/


/* =========================================
   RESET / BASE
   ========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #fff;
    color: #111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}


/* =========================================
   SITE HEADER
   ========================================= */

.pdl-site-header {
    position: relative;
    width: 100%;
    height: 76px;

    background: #111315;
    color: #fff;

    z-index: 1000;
}

.pdl-header-inner {
    width: 94%;
    max-width: 1200px;
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   BRAND
   ========================================= */

.pdl-brand {
    color: #fff !important;
    text-decoration: none !important;

    font-size: 22px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================
   DESKTOP NAVIGATION
   ========================================= */

.pdl-primary-nav {
    display: block;
}

.pdl-menu {
    display: flex;
    align-items: center;
    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.pdl-menu li {
    margin: 0;
    padding: 0;
}

.pdl-menu a {
    color: #fff !important;
    text-decoration: none !important;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pdl-menu a:hover {
    color: #d71920 !important;
}


/* =========================================
   MOBILE MENU BUTTON
   ========================================= */

.pdl-menu-toggle {
    display: none;

    width: 38px;
    height: 38px;

    padding: 7px 5px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.pdl-menu-toggle span {
    display: block;

    width: 27px;
    height: 2px;

    margin: 5px auto;

    background: #fff;
}


/* =========================================
   HERO
   ========================================= */

.pdl-hero {
    position: relative;

    width: 100%;
    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #17120f;
    color: #fff;

    text-align: center;
}
/* =========================================
   HERO BACKGROUND IMAGE
   ========================================= */

.pdl-hero-bg {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 0;
}

/* =========================================
   HERO DARK OVERLAY
   ========================================= */

.pdl-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(0, 0, 0, .42),
        rgba(0, 0, 0, .58)
    );

    z-index: 1;
    pointer-events: none;
}
.pdl-hero-inner {
    position: relative;
    z-index: 2;

    width: 94%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 55px 20px 65px;
}


/* =========================================
   COMING SOON
   ========================================= */

.pdl-coming-soon {
    display: inline-block;

    margin: 0 0 20px;
    padding: 10px 22px;

    background: #d71920;
    color: #fff;

    border-radius: 4px;

    font-size: 23px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* =========================================
   HERO TITLE
   ========================================= */

.pdl-hero h1 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 70px;
    line-height: 1.05;
    font-weight: 900;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.pdl-hero-subtitle {
    margin: 0 0 24px;

    color: #fff;

    font-size: 23px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.pdl-hero-text {
    margin: 0 0 30px;

    color: #fff;

    font-size: 21px;
    font-weight: 500;
}


/* =========================================
   PRIMARY BUTTON
   ========================================= */

.pdl-primary-button {
    display: inline-block;

    padding: 16px 34px;

    background: #d71920;
    color: #fff !important;

    text-decoration: none !important;

    border-radius: 4px;

    font-size: 19px;
    font-weight: 900;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        background .2s ease,
        transform .2s ease;
}

.pdl-primary-button:hover {
    background: #b8141a;
    transform: translateY(-2px);
}


/* =========================================
   FOOTER
   ========================================= */

.pdl-site-footer {
    width: 100%;

    padding: 45px 20px;

    background: #111315;
    color: #fff;

    text-align: center;
}

.pdl-footer-inner {
    width: 94%;
    max-width: 1200px;

    margin: 0 auto;
}

.pdl-footer-brand {
    margin-bottom: 12px;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 2px;
}

.pdl-footer-location {
    margin-bottom: 18px;

    font-size: 15px;
    line-height: 1.6;
}

.pdl-footer-menu {
    display: flex;
    justify-content: center;
    gap: 20px;

    margin: 0 0 20px;
    padding: 0;

    list-style: none;
}

.pdl-footer-menu a {
    color: #fff !important;
    text-decoration: none !important;
}

.pdl-footer-copy {
    font-size: 13px;
    opacity: .75;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .pdl-site-header {
        height: 58px;
    }

    .pdl-header-inner {
        width: 100%;
        padding: 0 18px;
    }

    .pdl-brand {
        font-size: 17px;
        letter-spacing: 2px;
    }

    .pdl-menu-toggle {
        display: block;
    }

    .pdl-primary-nav {
        display: none;

        position: absolute;

        top: 58px;
        left: 0;

        width: 100%;

        background: #111315;
    }

    .pdl-menu {
        display: block;
    }

    .pdl-menu li {
        width: 100%;
    }

    .pdl-menu a {
        display: block;

        width: 100%;
        padding: 14px 18px;

        border-top: 1px solid rgba(255,255,255,.08);
    }


    /* MOBILE HERO */

    .pdl-hero {
        min-height: 350px;
    }

    .pdl-hero-inner {
        width: 96%;
        padding: 16px 10px 18px;
    }

    .pdl-coming-soon {
        margin-bottom: 8px;
        padding: 8px 16px;

        font-size: 18px;
        letter-spacing: 2px;
    }

    .pdl-hero h1 {
        margin-bottom: 4px;

        font-size: 44px;
        line-height: 1;

        letter-spacing: 2px;
    }

    .pdl-hero-subtitle {
        margin-bottom: 12px;

        font-size: 16px;
        line-height: 1.2;

        letter-spacing: 2px;
    }

    .pdl-hero-text {
        margin-bottom: 18px;

        font-size: 18px;
        line-height: 1.3;
    }

    .pdl-primary-button {
        padding: 11px 26px;

        font-size: 16px;
    }


    /* MOBILE FOOTER */

    .pdl-footer-menu {
        display: block;
    }

    .pdl-footer-menu li {
        margin: 8px 0;
    }
}
/* =========================================
   MOBILE MENU OPEN STATE
   ========================================= */

@media (max-width: 767px) {

    .pdl-primary-nav.pdl-menu-open {
        display: block;
    }

}
/* =========================================
   GRAND OPENING SPECIALS
   ========================================= */

.pdl-grand-opening {
    width: 100%;
    padding: 30px 20px;
    background: #fff;
}

.pdl-grand-opening-link {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-decoration: none;
}

.pdl-grand-opening-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}


/* MOBILE */

@media (max-width: 767px) {

    .pdl-grand-opening {
        padding: 18px 14px;
    }

    .pdl-grand-opening-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

}
/* =========================================
   VALUE DEALS
   ========================================= */

.pdl-value-deals {
    width: 100%;
    padding: 30px 0 30px;
    background: #111315;
    color: #fff;
    overflow: hidden;
}

.pdl-value-deals-inner {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pdl-section-kicker {
    margin: 0 0 4px;
    color: #d71920;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdl-value-deals h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 3px;
}

.pdl-section-intro {
    margin: 0 0 20px;
    color: #ddd;
    font-size: 15px;
}

.pdl-deals-track {
    display: flex;
    gap: 18px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding: 2px 0 15px;

    scrollbar-width: none;
}

.pdl-deals-track::-webkit-scrollbar {
    display: none;
}

.pdl-deal-card {
    flex: 0 0 calc((100% - 36px) / 3);
    display: block;

    overflow: hidden;
    border-radius: 7px;

    scroll-snap-align: start;

    text-decoration: none;
}

.pdl-deal-card img {
    display: block;
    width: 100%;
    height: auto;
}


/* MOBILE */

@media (max-width: 767px) {

    .pdl-value-deals {
        padding: 32px 0 36px;
    }

    .pdl-value-deals-inner {
        width: 100%;
    }

    .pdl-value-deals h2 {
        font-size: 27px;
    }

    .pdl-section-intro {
        padding: 0 20px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .pdl-deals-track {
        gap: 12px;
        padding: 0 16px 12px;
    }

    .pdl-deal-card {
        flex: 0 0 82%;
    }

}
/* =========================================
   VALUE DEALS CAROUSEL ARROWS
   ========================================= */

.pdl-deals-carousel {
    position: relative;
    width: 100%;
}

.pdl-deals-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #d71920;
    color: #fff;

    font-size: 28px;
    font-weight: 900;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .35);

    transition:
        background .2s ease,
        transform .2s ease;
}

.pdl-deals-arrow:hover {
    background: #b8141a;
    transform: translateY(-50%) scale(1.08);
}

.pdl-deals-prev {
    left: -23px;
}

.pdl-deals-next {
    right: -23px;
}


/* MOBILE */

@media (max-width: 767px) {

    .pdl-deals-arrow {
        width: 40px;
        height: 40px;

        font-size: 23px;
    }

    .pdl-deals-prev {
        left: 5px;
    }

    .pdl-deals-next {
        right: 5px;
    }

}
/* =========================================
   BUILD YOUR OWN PIZZA
   ========================================= */

.pdl-build-pizza {
    width: 100%;
    padding: 35px 20px;
    background: #fff;
    color: #111;
}

.pdl-build-pizza-inner {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 35px;
}

.pdl-build-pizza-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.pdl-build-pizza-image img {
    display: block;
    width: 100%;
    height: auto;
}

.pdl-build-pizza-content {
    text-align: left;
}

.pdl-build-kicker {
    margin: 0 0 6px;

    color: #d71920;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.pdl-build-pizza-content h2 {
    margin: 0 0 12px;

    color: #111;

    font-size: 42px;
    line-height: 1.05;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.pdl-build-pizza-content > p:not(.pdl-build-kicker) {
    max-width: 500px;
    margin: 0 0 20px;

    color: #444;

    font-size: 18px;
    line-height: 1.55;
}


/* =========================================
   BUILD YOUR OWN PIZZA - MOBILE
   ========================================= */

@media (max-width: 767px) {

    .pdl-build-pizza {
        padding: 22px 14px 24px;
    }

    .pdl-build-pizza-inner {
        width: 100%;

        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pdl-build-pizza-image {
        border-radius: 6px;
    }

    .pdl-build-pizza-content {
        text-align: center;
    }

    .pdl-build-kicker {
        margin-bottom: 5px;

        font-size: 12px;
        letter-spacing: 2px;
    }

    .pdl-build-pizza-content h2 {
        margin-bottom: 10px;

        font-size: 31px;
        line-height: 1.08;
    }

    .pdl-build-pizza-content > p:not(.pdl-build-kicker) {
        margin: 0 auto 18px;

        font-size: 16px;
        line-height: 1.5;
    }

}
/* =========================================
   EXPLORE OUR MENU
   ========================================= */

.pdl-explore-menu {
    width: 100%;
    padding: 38px 20px 42px;
    background: #111315;
    color: #fff;
}

.pdl-explore-menu-inner {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pdl-explore-menu h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdl-explore-intro {
    margin: 0 0 24px;
    color: #ddd;
    font-size: 15px;
}


/* MENU GRID */

.pdl-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


/* MENU CARD */

.pdl-menu-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 7px;
    background: #222;
    text-decoration: none;
}

.pdl-menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .3s ease;
}

.pdl-menu-card-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.03) 35%,
        rgba(0,0,0,.78) 100%
    );
}

.pdl-menu-card h3 {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;

    margin: 0;

    color: #fff;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;

    z-index: 2;
}

.pdl-menu-card:hover img {
    transform: scale(1.035);
}


/* =========================================
   EXPLORE OUR MENU - MOBILE
   ========================================= */

@media (max-width: 767px) {

    .pdl-explore-menu {
        padding: 28px 10px 30px;
    }

    .pdl-explore-menu-inner {
        width: 100%;
    }

    .pdl-explore-menu h2 {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .pdl-explore-intro {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .pdl-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pdl-menu-card {
        aspect-ratio: 1 / 1;
        border-radius: 5px;
    }

    .pdl-menu-card h3 {
        left: 10px;
        right: 10px;
        bottom: 10px;

        font-size: 14px;
        line-height: 1.15;
        letter-spacing: .5px;
    }

}
/* =========================================
   CALZONES & STROMBOLI
   ========================================= */

.pdl-calzone-banner {
    width: 100%;
    padding: 30px 20px;
    background: #fff;
}

.pdl-calzone-banner-inner {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
}

.pdl-calzone-banner-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 7px;
    text-decoration: none;
}

.pdl-calzone-banner-link img {
    display: block;
    width: 100%;
    height: auto;
}


/* MOBILE */

@media (max-width: 767px) {

    .pdl-calzone-banner {
        padding: 18px 10px;
    }

    .pdl-calzone-banner-inner {
        width: 100%;
    }

    .pdl-calzone-banner-link {
        border-radius: 5px;
    }

}
/* =========================================
   HOME SECTION COLOR FLOW
   ========================================= */

/* Grand Opening joins the dark Specials area */
.pdl-grand-opening {
    background: #111315;
}

/* Calzone banner joins Explore Our Menu */
.pdl-calzone-banner {
    background: #111315;
}
/* =========================================
   LIGHT MENU AREA
   ========================================= */

.pdl-explore-menu {
    background: #fff;
    color: #111;
}

.pdl-explore-menu h2 {
    color: #111;
}

.pdl-explore-intro {
    color: #555;
}

.pdl-calzone-banner {
    background: #fff;
}
/* =========================================
   HOME WHITE AREA SPACING
   ========================================= */

.pdl-build-pizza {
    padding-bottom: 25px;
}

.pdl-explore-menu {
    padding-top: 22px;
    padding-bottom: 22px;
}

.pdl-calzone-banner {
    padding-top: 10px;
    padding-bottom: 22px;
}


/* MOBILE */

@media (max-width: 767px) {

    .pdl-build-pizza {
        padding-bottom: 18px;
    }

    .pdl-explore-menu {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .pdl-calzone-banner {
        padding-top: 6px;
        padding-bottom: 16px;
    }

}
/* ========================================
   WHY PIZZA DE LEON
======================================== */

.pdl-why {
    width: 100%;
    padding: 35px 20px 40px;
    background: #fff;
    color: #111;
}

.pdl-why-inner {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 35px;
}

.pdl-why-content {
    text-align: left;
}

.pdl-why-kicker {
    margin: 0 0 6px;
    color: #d71920;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.pdl-why h2 {
    margin: 0 0 14px;
    color: #111;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pdl-why-text {
    max-width: 520px;
    margin: 0 0 20px;
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

.pdl-why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 18px;
    margin: 0 0 24px;
}

.pdl-why-features span {
    position: relative;
    padding-left: 18px;
    color: #222;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
}

.pdl-why-features span::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d71920;
    font-weight: 900;
}

.pdl-why-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.pdl-why-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* MOBILE */
@media (max-width: 767px) {

    .pdl-why {
        padding: 22px 14px 28px;
    }

    .pdl-why-inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pdl-why-image {
        grid-row: 1;
        border-radius: 6px;
    }

    .pdl-why-content {
        grid-row: 2;
        text-align: center;
    }

    .pdl-why-kicker {
        margin-bottom: 5px;
        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .pdl-why h2 {
        margin-bottom: 11px;
        font-size: 30px;
        line-height: 1.08;
    }

    .pdl-why-text {
        margin: 0 auto 18px;
        font-size: 16px;
        line-height: 1.5;
    }

    .pdl-why-features {
        max-width: 390px;
        margin: 0 auto 22px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        text-align: left;
    }

    .pdl-why-features span {
        font-size: 11px;
        line-height: 1.3;
    }
}
/* FINAL CALZONE TO WHY SPACING */

.pdl-calzone-banner {
    padding-bottom: 8px;
}

.pdl-why {
    padding-top: 12px;
}

@media (max-width: 767px) {

    .pdl-calzone-banner {
        padding-bottom: 6px;
    }

    .pdl-why {
        padding-top: 10px;
    }
}
/* HOME FINAL SPACING - WHY SECTION */

.pdl-why {
    padding-top: 20px;
    padding-bottom: 28px;
}

.pdl-why-inner {
    gap: 30px;
}

.pdl-why-kicker {
    margin-bottom: 4px;
}

.pdl-why h2 {
    margin-bottom: 10px;
}

.pdl-why-text {
    margin-bottom: 15px;
}

.pdl-why-features {
    margin-bottom: 18px;
}


/* MOBILE */
@media (max-width: 767px) {

    .pdl-why {
        padding-top: 14px;
        padding-bottom: 22px;
    }

    .pdl-why-inner {
        gap: 15px;
    }

    .pdl-why h2 {
        margin-bottom: 8px;
    }

    .pdl-why-text {
        margin-bottom: 14px;
    }

    .pdl-why-features {
        margin-bottom: 17px;
    }
}
/* MOBILE FOOTER SPACING */

@media (max-width: 767px) {

    .pdl-site-footer {
        padding: 32px 16px 30px;
    }

    .pdl-footer-brand {
        margin-bottom: 12px;
    }

    .pdl-footer-location {
        margin-bottom: 16px;
    }

    .pdl-footer-copy {
        margin-top: 12px;
    }
}
/* ========================================
   HERO ROTATING MESSAGES - 2 SECONDS
======================================== */

.pdl-rotator {
    position: relative;
    height: 105px;
    max-width: 1100px;
    margin: 0 auto 20px;
}

.pdl-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: pdlRotate 8s infinite;
}

.pdl-message:nth-child(1) {
    animation-delay: 0s;
}

.pdl-message:nth-child(2) {
    animation-delay: 2s;
}

.pdl-message:nth-child(3) {
    animation-delay: 4s;
}

.pdl-message:nth-child(4) {
    animation-delay: 6s;
}

.pdl-message strong {
    display: block;
    color: #fff;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 3px 10px rgba(0,0,0,.85);
}

.pdl-message span {
    display: block;
    margin-top: 7px;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,.9);
}

@keyframes pdlRotate {

    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    8% {
        opacity: 1;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    25% {
        opacity: 0;
        transform: translateY(-8px);
    }

    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}


/* MOBILE */
@media (max-width: 767px) {

    .pdl-rotator {
        height: 88px;
        margin-bottom: 10px;
    }

    .pdl-message strong {
        font-size: 22px;
        line-height: 1.15;
        letter-spacing: .5px;
    }

    .pdl-message span {
        margin-top: 5px;
        font-size: 16px;
        line-height: 1.25;
    }
}


/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {

    .pdl-message {
        animation: none;
        display: none;
    }

    .pdl-message:first-child {
        display: block;
        opacity: 1;
        transform: none;
    }
}
/* =========================================================
   PIZZA DE LEON - MENU PAGE
   ========================================================= */

.pdl-menu-page {
    width: 100%;
    background: #fff;
    color: #111;
}

.pdl-menu-container {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
}

.pdl-menu-section {
    width: 100%;
    padding: 55px 20px;
}

.pdl-menu-heading {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.pdl-menu-kicker {
    margin: 0 0 7px;
    color: #d71920;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.pdl-menu-heading h2,
.pdl-category-content h2,
.pdl-menu-cta h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pdl-menu-heading > p:last-child,
.pdl-category-intro {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.55;
}


/* MENU HERO */

.pdl-menu-hero {
    width: 100%;
    padding: 62px 20px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-menu-hero-inner {
    width: 94%;
    max-width: 900px;
    margin: 0 auto;
}

.pdl-menu-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 3px;
}

.pdl-menu-hero p:last-child {
    max-width: 700px;
    margin: 0 auto;
    color: #ddd;
    font-size: 18px;
    line-height: 1.55;
}


/* BUILD YOUR OWN */

.pdl-build-menu {
    background: #fff;
}

.pdl-build-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.pdl-build-size-image {
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.pdl-build-size-image img {
    display: block;
    width: 100%;
    height: auto;
}

.pdl-build-steps {
    display: grid;
    gap: 14px;
}

.pdl-build-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    background: #fafafa;
}

.pdl-step-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d71920;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.pdl-build-step h3 {
    margin: 2px 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.pdl-build-step p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.55;
}

.pdl-topping-price {
    margin-bottom: 8px !important;
    color: #111 !important;
}

.pdl-size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pdl-size-options div {
    padding: 10px 8px;
    border-radius: 5px;
    background: #fff;
    text-align: center;
}

.pdl-size-options strong,
.pdl-size-options span {
    display: block;
}

.pdl-size-options strong {
    font-size: 14px;
}

.pdl-size-options span {
    margin-top: 3px;
    color: #d71920;
    font-size: 18px;
    font-weight: 900;
}


/* SPECIALTY PIZZAS */

.pdl-specialty-section {
    background: #111315;
    color: #fff;
}

.pdl-specialty-section .pdl-menu-heading h2 {
    color: #fff;
}

.pdl-specialty-section .pdl-menu-heading > p:last-child {
    color: #ccc;
}

.pdl-specialty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pdl-pizza-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    color: #111;
}

.pdl-pizza-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eee;
}

.pdl-pizza-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdl-pizza-card-content {
    padding: 18px;
}

.pdl-pizza-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.pdl-pizza-description {
    min-height: 72px;
    margin: 0 0 16px;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.pdl-pizza-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.pdl-pizza-prices div {
    padding: 8px 4px;
    text-align: center;
}

.pdl-pizza-prices div + div {
    border-left: 1px solid #e5e5e5;
}

.pdl-pizza-prices span,
.pdl-pizza-prices strong {
    display: block;
}

.pdl-pizza-prices span {
    color: #777;
    font-size: 12px;
    font-weight: 700;
}

.pdl-pizza-prices strong {
    margin-top: 2px;
    color: #d71920;
    font-size: 18px;
}


/* CATEGORY LAYOUT */

.pdl-category-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 45px;
    align-items: start;
}

.pdl-category-layout-reverse .pdl-category-image {
    order: 2;
}

.pdl-category-layout-reverse .pdl-category-content {
    order: 1;
}

.pdl-category-image {
    overflow: hidden;
    border-radius: 8px;
}

.pdl-category-image img {
    display: block;
    width: 100%;
    height: auto;
}

.pdl-category-content h2 {
    color: #111;
}

.pdl-simple-menu-list {
    margin-top: 22px;
}

.pdl-simple-menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #ddd;
}

.pdl-simple-menu-item h3 {
    margin: 0 0 3px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.pdl-simple-menu-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
}

.pdl-item-price {
    flex: 0 0 auto;
    color: #d71920;
    font-size: 20px;
    font-weight: 900;
}

.pdl-menu-note {
    margin-top: 20px;
    padding: 16px;
    border-left: 4px solid #d71920;
    background: #f5f5f5;
}

.pdl-menu-note strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 900;
}

.pdl-menu-note p {
    margin: 0 0 12px;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.pdl-menu-note p:last-child {
    margin-bottom: 0;
}


/* DARK MENU SECTION */

.pdl-dark-menu-section {
    background: #111315;
    color: #fff;
}

.pdl-dark-menu-section .pdl-category-content h2,
.pdl-dark-menu-section .pdl-simple-menu-item h3 {
    color: #fff;
}

.pdl-dark-menu-section .pdl-category-intro,
.pdl-dark-menu-section .pdl-simple-menu-item p {
    color: #ccc;
}

.pdl-dark-menu-section .pdl-simple-menu-item {
    border-color: rgba(255,255,255,.15);
}

.pdl-dark-menu-section .pdl-menu-note {
    background: #1d2023;
}

.pdl-dark-menu-section .pdl-menu-note p {
    color: #ccc;
}


/* DESSERTS */

.pdl-dessert-section {
    background: #fff;
}

.pdl-dessert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pdl-dessert-card {
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
}

.pdl-dessert-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.pdl-dessert-card > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 16px;
}

.pdl-dessert-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.pdl-dessert-card strong {
    color: #d71920;
    font-size: 20px;
}


/* DRINKS */

.pdl-drinks-section {
    background: #f5f5f5;
}


/* FINAL CTA */

.pdl-menu-cta {
    width: 100%;
    padding: 52px 20px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-menu-cta h2 {
    color: #fff;
}

.pdl-menu-cta > .pdl-menu-container > p:not(.pdl-menu-kicker) {
    max-width: 650px;
    margin: 0 auto 22px;
    color: #ccc;
    font-size: 16px;
}


/* =========================================================
   MENU MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pdl-menu-section {
        padding: 36px 14px;
    }

    .pdl-menu-container {
        width: 100%;
    }

    .pdl-menu-heading {
        margin-bottom: 24px;
    }

    .pdl-menu-heading h2,
    .pdl-category-content h2,
    .pdl-menu-cta h2 {
        font-size: 29px;
    }

    .pdl-menu-heading > p:last-child,
    .pdl-category-intro {
        font-size: 15px;
    }


    /* HERO */

    .pdl-menu-hero {
        padding: 42px 16px;
    }

    .pdl-menu-hero h1 {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .pdl-menu-hero p:last-child {
        font-size: 15px;
    }


    /* BUILD */

    .pdl-build-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pdl-build-step {
        grid-template-columns: 38px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .pdl-step-number {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .pdl-build-step h3 {
        font-size: 16px;
    }

    .pdl-build-step p {
        font-size: 14px;
    }

    .pdl-size-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .pdl-size-options strong {
        font-size: 12px;
    }

    .pdl-size-options span {
        font-size: 16px;
    }


    /* SPECIALTY */

    .pdl-specialty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .pdl-pizza-card {
        border-radius: 6px;
    }

    .pdl-pizza-card-content {
        padding: 11px;
    }

    .pdl-pizza-card h3 {
        font-size: 15px;
    }

    .pdl-pizza-description {
        min-height: 0;
        margin-bottom: 11px;
        font-size: 12px;
        line-height: 1.4;
    }

    .pdl-pizza-prices span {
        font-size: 10px;
    }

    .pdl-pizza-prices strong {
        font-size: 14px;
    }


    /* CATEGORY SECTIONS */

    .pdl-category-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pdl-category-layout-reverse .pdl-category-image,
    .pdl-category-layout-reverse .pdl-category-content {
        order: initial;
    }

    .pdl-simple-menu-item {
        gap: 12px;
    }

    .pdl-simple-menu-item h3 {
        font-size: 15px;
    }

    .pdl-simple-menu-item p {
        font-size: 13px;
    }

    .pdl-item-price {
        font-size: 18px;
    }


    /* DESSERTS */

    .pdl-dessert-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pdl-dessert-card > div {
        padding: 13px 15px;
    }


    /* CTA */

    .pdl-menu-cta {
        padding: 40px 16px;
    }

}
.pdl-calzone-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
/* =========================================================
   PIZZA DE LEON — SPECIALS PAGE
   ========================================================= */

.pdl-specials-page {
    background: #fff;
    color: #181818;
}

.pdl-specials-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.pdl-specials-kicker {
    margin: 0 0 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdl-specials-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.pdl-specials-heading h2,
.pdl-specials-info h2,
.pdl-specials-delivery h2,
.pdl-specials-quality h2,
.pdl-specials-cta h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.pdl-specials-heading > p:last-child {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   HERO
   ========================================================= */

.pdl-specials-hero {
    padding: 82px 0 78px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-specials-hero .pdl-specials-container {
    max-width: 920px;
}

.pdl-specials-hero h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px, 6vw, 68px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -2px;
}

.pdl-specials-hero-text {
    max-width: 780px;
    margin: 0 auto;
    color: #d5d5d5;
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   GRAND OPENING
   ========================================================= */

.pdl-grand-opening {
    padding: 76px 0 82px;
    background: #fff;
}

.pdl-grand-banner {
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 16px;
}

.pdl-grand-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.pdl-grand-deals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.pdl-grand-deal {
    padding: 34px 30px;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    background: #fafafa;
    text-align: center;
}

.pdl-grand-deal h3 {
    margin: 18px 0 18px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
}

.pdl-grand-deal > p {
    margin: 18px 0 0;
    color: #6a6a6a;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   BADGES + PRICES
   ========================================================= */

.pdl-deal-badge {
    display: inline-block;
    padding: 7px 11px;
    border-radius: 4px;
    background: #d71920;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.1px;
}

.pdl-deal-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.pdl-regular-price {
    color: #777;
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
}

.pdl-deal-pricing strong {
    color: #d71920;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.pdl-save-price {
    color: #111315;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .6px;
}


/* =========================================================
   VALUE DEALS
   ========================================================= */

.pdl-value-specials {
    padding: 82px 0 90px;
    background: #111315;
    color: #fff;
}

.pdl-value-specials .pdl-specials-heading h2 {
    color: #fff;
}

.pdl-value-specials .pdl-specials-heading > p:last-child {
    color: #bdbdbd;
}

.pdl-specials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pdl-special-card {
    display: flex;
    flex-direction: column;
    min-height: 365px;
    padding: 27px 24px 24px;
    border: 1px solid #303236;
    border-radius: 14px;
    background: #1a1c1f;
}

.pdl-special-card h3 {
    margin: 18px 0 12px;
    color: #fff;
    font-size: 21px;
    line-height: 1.12;
    font-weight: 900;
}

.pdl-special-description {
    margin: 0 0 24px;
    color: #c7c7c7;
    font-size: 14px;
    line-height: 1.6;
}

.pdl-special-card .pdl-deal-pricing {
    margin-top: auto;
    align-items: flex-start;
}

.pdl-special-card .pdl-regular-price {
    color: #8f8f8f;
}

.pdl-special-card .pdl-deal-pricing strong {
    font-size: 39px;
}

.pdl-special-card .pdl-save-price {
    color: #fff;
}

.pdl-special-restriction {
    margin: 18px 0 0;
    padding-top: 15px;
    border-top: 1px solid #33363a;
    color: #999;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pdl-special-card-featured {
    border-color: #d71920;
    background: #211719;
}

.pdl-free-drink {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
}

.pdl-free-drink span {
    color: #d71920;
    font-size: 40px;
    line-height: .95;
    font-weight: 900;
}

.pdl-free-drink strong {
    margin-top: 5px;
    color: #fff;
    font-size: 18px;
    line-height: 1.1;
}

.pdl-free-drink small {
    margin-top: 7px;
    color: #aaa;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   INFORMATION
   ========================================================= */

.pdl-specials-info {
    padding: 90px 0;
    background: #fff;
}

.pdl-specials-info-inner {
    max-width: 900px;
    text-align: center;
}

.pdl-specials-info p:not(.pdl-specials-kicker) {
    max-width: 780px;
    margin: 0 auto 18px;
    color: #555;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   PICKUP + DELIVERY
   ========================================================= */

.pdl-specials-delivery {
    padding: 85px 0;
    background: #f4f4f2;
}

.pdl-delivery-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: center;
}

.pdl-delivery-grid p:not(.pdl-specials-kicker) {
    color: #555;
    font-size: 17px;
    line-height: 1.75;
}

.pdl-delivery-areas {
    display: grid;
    gap: 10px;
}

.pdl-delivery-areas span {
    padding: 14px 18px;
    border-left: 4px solid #d71920;
    background: #fff;
    color: #111315;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .6px;
}


/* =========================================================
   QUALITY
   ========================================================= */

.pdl-specials-quality {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

.pdl-specials-quality .pdl-specials-container {
    max-width: 900px;
}

.pdl-specials-quality > .pdl-specials-container > p:last-child {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   BUTTON
   ========================================================= */

.pdl-specials-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 20px;
    padding: 0 25px;
    border-radius: 4px;
    background: #111315;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .7px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.pdl-specials-button:hover {
    transform: translateY(-2px);
    background: #d71920;
    color: #fff;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.pdl-specials-cta {
    padding: 86px 0 80px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-specials-cta .pdl-specials-container {
    max-width: 800px;
}

.pdl-specials-cta h2 {
    color: #fff;
}

.pdl-specials-cta > .pdl-specials-container > p:not(.pdl-specials-kicker):not(.pdl-specials-fine-print) {
    color: #c8c8c8;
    font-size: 17px;
    line-height: 1.7;
}

.pdl-specials-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.pdl-specials-cta-buttons .pdl-specials-button {
    margin-top: 0;
}

.pdl-specials-button-red {
    background: #d71920;
}

.pdl-specials-button-red:hover {
    background: #b81319;
}

.pdl-specials-button-outline {
    border: 1px solid #555;
    background: transparent;
}

.pdl-specials-button-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #111315;
}

.pdl-specials-fine-print {
    margin: 28px 0 0;
    color: #777;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .pdl-specials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdl-delivery-grid {
        gap: 45px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pdl-specials-container {
        width: min(100% - 28px, 1200px);
    }

    .pdl-specials-hero {
        padding: 58px 0 55px;
    }

    .pdl-specials-hero h1 {
        margin-bottom: 18px;
        font-size: 38px;
        letter-spacing: -1.2px;
    }

    .pdl-specials-hero-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .pdl-grand-opening,
    .pdl-value-specials,
    .pdl-specials-info,
    .pdl-specials-delivery,
    .pdl-specials-quality,
    .pdl-specials-cta {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .pdl-specials-heading {
        margin-bottom: 28px;
    }

    .pdl-specials-heading h2,
    .pdl-specials-info h2,
    .pdl-specials-delivery h2,
    .pdl-specials-quality h2,
    .pdl-specials-cta h2 {
        font-size: 30px;
    }

    .pdl-grand-banner {
        margin-bottom: 24px;
        border-radius: 10px;
    }

    /* Grand Opening remains 2 columns */
    .pdl-grand-deals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .pdl-grand-deal {
        padding: 20px 10px;
        border-radius: 10px;
    }

    .pdl-grand-deal h3 {
        margin: 13px 0;
        font-size: 16px;
    }

    .pdl-grand-deal .pdl-deal-pricing strong {
        font-size: 34px;
    }

    .pdl-grand-deal > p {
        font-size: 10px;
        line-height: 1.4;
    }

    /* Value Deals: explicitly 2 columns on phones */
    .pdl-specials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .pdl-special-card {
        min-height: 330px;
        padding: 18px 13px 16px;
        border-radius: 10px;
    }

    .pdl-deal-badge {
        padding: 6px 7px;
        font-size: 8px;
        letter-spacing: .5px;
    }

    .pdl-special-card h3 {
        margin: 13px 0 9px;
        font-size: 15px;
    }

    .pdl-special-description {
        margin-bottom: 16px;
        font-size: 11px;
        line-height: 1.5;
    }

    .pdl-special-card .pdl-regular-price {
        font-size: 11px;
    }

    .pdl-special-card .pdl-deal-pricing strong {
        font-size: 31px;
    }

    .pdl-special-card .pdl-save-price {
        font-size: 10px;
    }

    .pdl-special-restriction {
        margin-top: 13px;
        padding-top: 11px;
        font-size: 9px;
    }

    .pdl-free-drink span {
        font-size: 31px;
    }

    .pdl-free-drink strong {
        font-size: 13px;
    }

    .pdl-free-drink small {
        font-size: 9px;
    }

    .pdl-delivery-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pdl-specials-info p:not(.pdl-specials-kicker),
    .pdl-delivery-grid p:not(.pdl-specials-kicker),
    .pdl-specials-quality > .pdl-specials-container > p:last-child,
    .pdl-specials-cta > .pdl-specials-container > p:not(.pdl-specials-kicker):not(.pdl-specials-fine-print) {
        font-size: 15px;
        line-height: 1.7;
    }

    .pdl-delivery-areas span {
        padding: 12px 14px;
        font-size: 12px;
    }

    .pdl-specials-button {
        min-height: 46px;
        padding: 0 20px;
        font-size: 12px;
    }
}


/* Extra-small phones */
@media (max-width: 380px) {

    .pdl-specials-container {
        width: min(100% - 20px, 1200px);
    }

    .pdl-specials-grid,
    .pdl-grand-deals {
        gap: 7px;
    }

    .pdl-special-card {
        padding-left: 10px;
        padding-right: 10px;
    }

    .pdl-special-card h3 {
        font-size: 14px;
    }
}
/* =========================================================
   SPECIALS PAGE — COMPACT + CARD HOVER UPDATE
   ========================================================= */

/* Special prices: white instead of red */
.pdl-special-card .pdl-deal-pricing strong {
    color: #fff;
}

/* Keep savings as the red accent */
.pdl-special-card .pdl-save-price {
    color: #d71920;
}

/* Grand Opening price stays dark for the white cards */
.pdl-grand-deal .pdl-deal-pricing strong {
    color: #111315;
}

.pdl-grand-deal .pdl-save-price {
    color: #d71920;
}


/* Smooth card movement */
.pdl-special-card,
.pdl-grand-deal {
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

/* Value Deal hover */
.pdl-special-card:hover {
    transform: translateY(-5px);
    border-color: #d71920;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

/* Grand Opening hover */
.pdl-grand-deal:hover {
    transform: translateY(-5px);
    border-color: #d71920;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}


/* Reduce vertical spacing */
.pdl-specials-hero {
    padding-top: 65px;
    padding-bottom: 60px;
}

.pdl-grand-opening {
    padding-top: 58px;
    padding-bottom: 62px;
}

.pdl-value-specials {
    padding-top: 62px;
    padding-bottom: 65px;
}

.pdl-specials-info {
    padding-top: 65px;
    padding-bottom: 65px;
}

.pdl-specials-delivery {
    padding-top: 65px;
    padding-bottom: 65px;
}

.pdl-specials-quality {
    padding-top: 65px;
    padding-bottom: 65px;
}

.pdl-specials-cta {
    padding-top: 65px;
    padding-bottom: 60px;
}


/* Don't use hover movement on touch/mobile */
@media (max-width: 767px) {

    .pdl-special-card:hover,
    .pdl-grand-deal:hover {
        transform: none;
        box-shadow: none;
    }

    .pdl-specials-hero {
        padding-top: 48px;
        padding-bottom: 46px;
    }

    .pdl-grand-opening,
    .pdl-value-specials,
    .pdl-specials-info,
    .pdl-specials-delivery,
    .pdl-specials-quality,
    .pdl-specials-cta {
        padding-top: 46px;
        padding-bottom: 46px;
    }
}
/* =========================================================
   PIZZA DE LEON — CONTACT PAGE
   ========================================================= */

.pdl-contact-page {
    background: #fff;
    color: #181818;
}

.pdl-contact-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.pdl-contact-kicker {
    margin: 0 0 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdl-contact-heading {
    margin-bottom: 30px;
    text-align: center;
}

.pdl-contact-heading h2,
.pdl-contact-form-card h2,
.pdl-contact-service h2,
.pdl-contact-cta h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}


/* =========================================================
   HERO
   ========================================================= */

.pdl-contact-hero {
    padding: 65px 0 60px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-contact-hero .pdl-contact-container {
    max-width: 850px;
}

.pdl-contact-hero h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.pdl-contact-hero-text {
    max-width: 700px;
    margin: 0 auto;
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   LOCATION
   ========================================================= */

.pdl-contact-location {
    padding: 60px 0 65px;
    background: #fff;
}

.pdl-location-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 38px;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    background: #f7f7f5;
}

.pdl-location-main {
    text-align: center;
}

.pdl-location-label {
    margin: 0 0 8px;
    color: #d71920;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.pdl-location-main h3 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 900;
}

.pdl-location-main > p:not(.pdl-location-label) {
    margin: 0 auto;
    color: #626262;
    font-size: 15px;
    line-height: 1.6;
}

.pdl-contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.pdl-contact-quick-card {
    display: flex;
    min-height: 105px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pdl-contact-quick-card:hover {
    transform: translateY(-4px);
    border-color: #d71920;
    box-shadow: 0 9px 22px rgba(0,0,0,.08);
}

.pdl-contact-quick-card span {
    margin-bottom: 7px;
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pdl-contact-quick-card strong,
.pdl-contact-quick-card a {
    color: #111315;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
    text-decoration: none;
}


/* =========================================================
   MAP + FORM
   ========================================================= */

.pdl-contact-main {
    padding: 65px 0;
    background: #111315;
}

.pdl-contact-main-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
    align-items: stretch;
}

.pdl-contact-map-card,
.pdl-contact-form-card {
    overflow: hidden;
    border-radius: 14px;
}

.pdl-contact-map-card {
    min-height: 650px;
    background: #ddd;
}

.pdl-contact-map-card iframe {
    display: block;
    width: 100%;
    min-height: 650px;
}

.pdl-contact-form-card {
    padding: 36px;
    background: #f7f7f5;
}

.pdl-contact-form-card h2 {
    margin-bottom: 12px;
}

.pdl-contact-form-intro {
    margin: 0 0 24px;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   EMPLOYMENT
   ========================================================= */

.pdl-contact-employment {
    margin-bottom: 28px;
    padding: 20px;
    border-left: 4px solid #d71920;
    background: #fff;
}

.pdl-contact-employment strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 900;
}

.pdl-contact-employment p {
    margin: 0 0 7px;
    color: #666;
    font-size: 13px;
}

.pdl-contact-employment a {
    color: #d71920;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.pdl-contact-employment a:hover {
    text-decoration: underline;
}


/* =========================================================
   CONTACT FORM 7
   ========================================================= */

.pdl-contact-form-wrap p {
    margin: 0 0 17px;
}

.pdl-contact-form-wrap label {
    display: block;
    color: #222;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

.pdl-contact-form-wrap input[type="text"],
.pdl-contact-form-wrap input[type="email"],
.pdl-contact-form-wrap input[type="tel"],
.pdl-contact-form-wrap select,
.pdl-contact-form-wrap textarea {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    outline: none;
    background: #fff;
    color: #181818;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.pdl-contact-form-wrap input[type="text"],
.pdl-contact-form-wrap input[type="email"],
.pdl-contact-form-wrap input[type="tel"],
.pdl-contact-form-wrap select {
    min-height: 46px;
}

.pdl-contact-form-wrap textarea {
    min-height: 125px;
    resize: vertical;
}

.pdl-contact-form-wrap input:focus,
.pdl-contact-form-wrap select:focus,
.pdl-contact-form-wrap textarea:focus {
    border-color: #d71920;
    box-shadow: 0 0 0 2px rgba(215,25,32,.08);
}

.pdl-contact-form-wrap input[type="submit"] {
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 4px;
    background: #d71920;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.pdl-contact-form-wrap input[type="submit"]:hover {
    transform: translateY(-2px);
    background: #b81319;
}

.pdl-contact-form-wrap .wpcf7-response-output {
    margin: 20px 0 0 !important;
}

.pdl-contact-form-notice {
    padding: 18px;
    background: #fff;
    color: #555;
}


/* =========================================================
   PICKUP + DELIVERY
   ========================================================= */

.pdl-contact-service {
    padding: 65px 0;
    background: #f4f4f2;
}

.pdl-contact-service-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 65px;
    align-items: center;
}

.pdl-contact-service-copy p:not(.pdl-contact-kicker) {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.pdl-contact-service-details {
    display: grid;
    gap: 12px;
}

.pdl-contact-service-details > div {
    padding: 20px;
    border-left: 4px solid #d71920;
    background: #fff;
}

.pdl-contact-service-details span {
    display: block;
    margin-bottom: 7px;
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pdl-contact-service-details strong {
    color: #111315;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.pdl-contact-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 0 25px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.pdl-contact-button:hover {
    transform: translateY(-2px);
    color: #fff;
}

.pdl-contact-button-red {
    background: #d71920;
}

.pdl-contact-button-red:hover {
    background: #b81319;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.pdl-contact-cta {
    padding: 65px 0 60px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-contact-cta .pdl-contact-container {
    max-width: 800px;
}

.pdl-contact-cta h2 {
    color: #fff;
}

.pdl-contact-cta > .pdl-contact-container > p:not(.pdl-contact-kicker) {
    color: #c8c8c8;
    font-size: 16px;
    line-height: 1.7;
}

.pdl-contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.pdl-contact-cta-buttons .pdl-contact-button {
    margin-top: 0;
}

.pdl-contact-button-outline {
    border: 1px solid #555;
    background: transparent;
}

.pdl-contact-button-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #111315;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .pdl-contact-main-grid {
        grid-template-columns: 1fr;
    }

    .pdl-contact-map-card,
    .pdl-contact-map-card iframe {
        min-height: 430px;
    }

    .pdl-contact-service-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pdl-contact-container {
        width: min(100% - 28px, 1120px);
    }

    .pdl-contact-hero {
        padding: 48px 0 46px;
    }

    .pdl-contact-hero h1 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }

    .pdl-contact-hero-text {
        font-size: 15px;
    }

    .pdl-contact-location,
    .pdl-contact-main,
    .pdl-contact-service,
    .pdl-contact-cta {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .pdl-contact-heading h2,
    .pdl-contact-form-card h2,
    .pdl-contact-service h2,
    .pdl-contact-cta h2 {
        font-size: 30px;
    }

    .pdl-location-card {
        padding: 25px 16px 16px;
        border-radius: 11px;
    }

    .pdl-location-main h3 {
        font-size: 20px;
    }

    /* Keep the three key details visible in one row */
    .pdl-contact-quick-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 25px;
    }

    .pdl-contact-quick-card {
        min-height: 95px;
        padding: 12px 6px;
    }

    .pdl-contact-quick-card span {
        font-size: 9px;
        letter-spacing: .5px;
    }

    .pdl-contact-quick-card strong,
    .pdl-contact-quick-card a {
        font-size: 11px;
    }

    /* Disable hover movement on touch screens */
    .pdl-contact-quick-card:hover {
        transform: none;
        box-shadow: none;
    }

    .pdl-contact-map-card,
    .pdl-contact-map-card iframe {
        min-height: 360px;
    }

    .pdl-contact-form-card {
        padding: 25px 18px;
        border-radius: 11px;
    }

    .pdl-contact-employment {
        padding: 16px;
    }

    .pdl-contact-service-copy p:not(.pdl-contact-kicker) {
        font-size: 15px;
    }

    .pdl-contact-button {
        min-height: 46px;
        padding: 0 20px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .pdl-contact-container {
        width: min(100% - 20px, 1120px);
    }

    .pdl-contact-quick-card strong,
    .pdl-contact-quick-card a {
        font-size: 10px;
    }
}
.pdl-no-break {
    white-space: nowrap;
}
/* =========================================================
   PIZZA DE LEON — EMPLOYMENT PAGE
   ========================================================= */

.pdl-employment-page {
    background: #fff;
    color: #181818;
}

.pdl-employment-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.pdl-employment-narrow {
    max-width: 850px;
}

.pdl-employment-kicker {
    margin: 0 0 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdl-employment-heading {
    margin-bottom: 34px;
    text-align: center;
}

.pdl-employment-heading h2,
.pdl-employment-intro h2,
.pdl-employment-availability h2,
.pdl-before-apply h2,
.pdl-employment-location h2,
.pdl-employment-application h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}


/* =========================================================
   HERO
   ========================================================= */

.pdl-employment-hero {
    padding: 65px 0 60px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-employment-hero .pdl-employment-container {
    max-width: 900px;
}

.pdl-employment-hero h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.pdl-employment-hero-text {
    max-width: 720px;
    margin: 0 auto;
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   INTRO
   ========================================================= */

.pdl-employment-intro {
    padding: 65px 0;
    background: #fff;
    text-align: center;
}

.pdl-employment-intro p:not(.pdl-employment-kicker) {
    margin: 0 auto 16px;
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}

.pdl-employment-intro strong {
    color: #111315;
}


/* =========================================================
   OPEN POSITIONS
   ========================================================= */

.pdl-employment-positions {
    padding: 65px 0 70px;
    background: #111315;
    color: #fff;
}

.pdl-employment-positions .pdl-employment-heading h2 {
    color: #fff;
}

.pdl-job-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pdl-job-card {
    display: flex;
    flex-direction: column;
    padding: 28px 25px;
    border: 1px solid #303236;
    border-radius: 14px;
    background: #1a1c1f;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.pdl-job-card:hover {
    transform: translateY(-5px);
    border-color: #d71920;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.pdl-job-number {
    color: #d71920;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pdl-job-card h3 {
    margin: 16px 0 18px;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
}

.pdl-job-card > p {
    margin: 0 0 15px;
    color: #c5c5c5;
    font-size: 14px;
    line-height: 1.65;
}

.pdl-job-card ul {
    margin: 3px 0 20px;
    padding-left: 20px;
    color: #d0d0d0;
}

.pdl-job-card li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.pdl-job-card-featured {
    border-color: #d71920;
}

.pdl-job-highlight {
    margin-top: auto;
    padding: 16px;
    border-left: 3px solid #d71920;
    background: #232529;
    color: #ddd;
    font-size: 13px;
    line-height: 1.55;
}

.pdl-job-highlight strong {
    color: #fff;
}


/* =========================================================
   AVAILABILITY
   ========================================================= */

.pdl-employment-availability {
    padding: 65px 0;
    background: #f4f4f2;
}

.pdl-availability-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
}

.pdl-availability-copy > p:not(.pdl-employment-kicker) {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.pdl-availability-copy strong {
    color: #111315;
}

.pdl-availability-warning {
    margin-top: 22px !important;
    padding: 16px 18px;
    border-left: 4px solid #d71920;
    background: #fff;
    color: #111315 !important;
    font-weight: 800;
}

.pdl-availability-cards {
    display: grid;
    gap: 10px;
}

.pdl-availability-cards > div {
    padding: 18px 20px;
    border-left: 4px solid #d71920;
    background: #fff;
}

.pdl-availability-cards span {
    display: block;
    margin-bottom: 6px;
    color: #d71920;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pdl-availability-cards strong {
    color: #111315;
    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   BEFORE YOU APPLY
   ========================================================= */

.pdl-before-apply {
    padding: 65px 0;
    background: #fff;
    text-align: center;
}

.pdl-before-apply p:not(.pdl-employment-kicker) {
    margin: 0 auto 17px;
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}

.pdl-before-apply strong {
    color: #111315;
}

.pdl-equal-opportunity {
    margin-top: 30px;
    padding: 22px 25px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #f7f7f5;
    color: #555;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   WORK LOCATION
   ========================================================= */

.pdl-employment-location {
    padding: 52px 0;
    background: #f4f4f2;
    text-align: center;
}

.pdl-employment-location h2 {
    margin-bottom: 10px;
}

.pdl-employment-location > .pdl-employment-container > p:last-child {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   APPLICATION
   ========================================================= */

.pdl-employment-application {
    padding: 65px 0;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-employment-application h2 {
    color: #fff;
}

.pdl-employment-application > .pdl-employment-container > p:not(.pdl-employment-kicker) {
    max-width: 680px;
    margin: 0 auto;
    color: #c8c8c8;
    font-size: 16px;
    line-height: 1.7;
}

.pdl-employment-form-wrap {
    margin-top: 30px;
    text-align: left;
}

.pdl-employment-form-placeholder {
    padding: 28px;
    border: 1px solid #303236;
    border-radius: 12px;
    background: #1a1c1f;
    text-align: center;
}

.pdl-employment-form-placeholder strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .8px;
}

.pdl-employment-form-placeholder p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
}


/* Employment Contact Form 7 — for later */
.pdl-employment-form-wrap label {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.pdl-employment-form-wrap input[type="text"],
.pdl-employment-form-wrap input[type="email"],
.pdl-employment-form-wrap input[type="tel"],
.pdl-employment-form-wrap input[type="number"],
.pdl-employment-form-wrap select,
.pdl-employment-form-wrap textarea {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid #3b3d41;
    border-radius: 5px;
    outline: none;
    background: #fff;
    color: #181818;
    font: inherit;
}

.pdl-employment-form-wrap input[type="text"],
.pdl-employment-form-wrap input[type="email"],
.pdl-employment-form-wrap input[type="tel"],
.pdl-employment-form-wrap input[type="number"],
.pdl-employment-form-wrap select {
    min-height: 46px;
}

.pdl-employment-form-wrap textarea {
    min-height: 120px;
    resize: vertical;
}

.pdl-employment-form-wrap input:focus,
.pdl-employment-form-wrap select:focus,
.pdl-employment-form-wrap textarea:focus {
    border-color: #d71920;
    box-shadow: 0 0 0 2px rgba(215,25,32,.12);
}

.pdl-employment-form-wrap input[type="submit"] {
    min-height: 48px;
    padding: 0 25px;
    border: 0;
    border-radius: 4px;
    background: #d71920;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    cursor: pointer;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .pdl-job-grid {
        grid-template-columns: 1fr;
    }

    .pdl-job-card {
        min-height: auto;
    }

    .pdl-availability-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pdl-employment-container {
        width: min(100% - 28px, 1120px);
    }

    .pdl-employment-hero {
        padding: 48px 0 46px;
    }

    .pdl-employment-hero h1 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }

    .pdl-employment-hero-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .pdl-employment-intro,
    .pdl-employment-positions,
    .pdl-employment-availability,
    .pdl-before-apply,
    .pdl-employment-location,
    .pdl-employment-application {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .pdl-employment-heading h2,
    .pdl-employment-intro h2,
    .pdl-employment-availability h2,
    .pdl-before-apply h2,
    .pdl-employment-location h2,
    .pdl-employment-application h2 {
        font-size: 30px;
    }

    .pdl-employment-intro p:not(.pdl-employment-kicker),
    .pdl-availability-copy > p:not(.pdl-employment-kicker),
    .pdl-before-apply p:not(.pdl-employment-kicker) {
        font-size: 15px;
    }

    .pdl-job-grid {
        gap: 12px;
    }

    .pdl-job-card {
        padding: 23px 19px;
    }

    .pdl-job-card:hover {
        transform: none;
        box-shadow: none;
    }

    .pdl-job-card h3 {
        font-size: 21px;
    }

    .pdl-job-card > p {
        font-size: 13px;
    }

    .pdl-availability-cards > div {
        padding: 15px 17px;
    }

    .pdl-equal-opportunity {
        padding: 18px;
    }

    .pdl-employment-form-placeholder {
        padding: 22px 16px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .pdl-employment-container {
        width: min(100% - 20px, 1120px);
    }
}
/* Employment Image */

.pdl-employment-image-section {
    padding: 0 0 65px;
    background: #fff;
}

.pdl-employment-image {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 14px;
}

.pdl-employment-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .4s ease;
}

.pdl-employment-image:hover img {
    transform: scale(1.015);
}

@media (max-width: 767px) {

    .pdl-employment-image-section {
        padding-bottom: 46px;
    }

    .pdl-employment-image {
        border-radius: 10px;
    }

    .pdl-employment-image:hover img {
        transform: none;
    }
}
/* =========================================================
   PIZZA DE LEON — NORTH DELAND LANDING PAGE
   ========================================================= */

.pdl-deland-page {
    background: #fff;
    color: #181818;
}

.pdl-deland-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.pdl-deland-narrow {
    max-width: 850px;
}

.pdl-deland-kicker {
    margin: 0 0 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdl-deland-page h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.pdl-deland-page p {
    line-height: 1.7;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.pdl-deland-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pdl-deland-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    text-decoration: none;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.pdl-deland-btn:hover {
    transform: translateY(-2px);
}

.pdl-deland-btn-primary {
    background: #d71920;
    border-color: #d71920;
    color: #fff;
}

.pdl-deland-btn-primary:hover {
    background: #b9141a;
    border-color: #b9141a;
    color: #fff;
}

.pdl-deland-btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.pdl-deland-btn-outline:hover {
    background: #fff;
    color: #111315;
}


/* =========================================================
   HERO — 2000 × 400 BANNER
   ========================================================= */

.pdl-deland-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111315;
    color: #fff;
}

.pdl-deland-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pdl-deland-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 11, 12, .94) 0%,
            rgba(10, 11, 12, .80) 32%,
            rgba(10, 11, 12, .36) 65%,
            rgba(10, 11, 12, .14) 100%
        );
}

.pdl-deland-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 58px;
    padding-bottom: 58px;
}

.pdl-deland-hero h1 {
    max-width: 700px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(42px, 6vw, 68px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -2px;
}

.pdl-deland-hero-text {
    max-width: 650px;
    margin: 0 0 25px;
    color: #e0e0e0;
    font-size: 17px;
}

.pdl-deland-hero .pdl-deland-buttons {
    justify-content: flex-start;
}


/* =========================================================
   INTRO
   ========================================================= */

.pdl-deland-intro {
    padding: 65px 0;
    background: #fff;
    text-align: center;
}

.pdl-deland-intro p:not(.pdl-deland-kicker) {
    margin: 0 auto 15px;
    color: #555;
    font-size: 16px;
}

.pdl-deland-intro strong {
    color: #111315;
}


/* =========================================================
   PIZZA / WINGS FEATURE SECTIONS
   ========================================================= */

.pdl-deland-feature {
    padding: 65px 0;
    background: #f4f4f2;
}

.pdl-deland-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.pdl-deland-feature-image {
    overflow: hidden;
    border-radius: 14px;
}

.pdl-deland-feature-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .4s ease;
}

.pdl-deland-feature-image:hover img {
    transform: scale(1.02);
}

.pdl-deland-feature-copy p:not(.pdl-deland-kicker) {
    margin: 0 0 15px;
    color: #555;
    font-size: 16px;
}

.pdl-deland-text-link {
    display: inline-block;
    margin-top: 7px;
    color: #d71920;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
    text-decoration: none;
}

.pdl-deland-text-link:hover {
    text-decoration: underline;
}


/* DARK WINGS */

.pdl-deland-feature-dark {
    background: #111315;
    color: #fff;
}

.pdl-deland-feature-dark .pdl-deland-feature-grid {
    direction: rtl;
}

.pdl-deland-feature-dark .pdl-deland-feature-grid > * {
    direction: ltr;
}

.pdl-deland-feature-dark h2 {
    color: #fff;
}

.pdl-deland-feature-dark .pdl-deland-feature-copy p:not(.pdl-deland-kicker) {
    color: #c8c8c8;
}


/* =========================================================
   MORE THAN PIZZA
   ========================================================= */

.pdl-deland-more {
    padding: 65px 0;
    background: #fff;
}

.pdl-deland-section-heading {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center;
}

.pdl-deland-section-heading > p:not(.pdl-deland-kicker) {
    margin: 0;
    color: #555;
}

.pdl-deland-food-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pdl-deland-food-card {
    padding: 27px 23px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #f7f7f5;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.pdl-deland-food-card:hover {
    transform: translateY(-5px);
    border-color: #d71920;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.pdl-deland-food-card span {
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
}

.pdl-deland-food-card h3 {
    margin: 12px 0 10px;
    color: #111315;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 900;
}

.pdl-deland-food-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
}


/* =========================================================
   SPECIALS
   ========================================================= */

.pdl-deland-specials {
    padding: 55px 0;
    background: #f4f4f2;
}

.pdl-deland-specials-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 45px;
    align-items: center;
}

.pdl-deland-specials h2 {
    margin-bottom: 12px;
}

.pdl-deland-specials p:not(.pdl-deland-kicker) {
    max-width: 720px;
    margin: 0;
    color: #555;
}

.pdl-deland-specials-action {
    white-space: nowrap;
}


/* =========================================================
   DELIVERY
   ========================================================= */

.pdl-deland-delivery {
    padding: 65px 0;
    background: #fff;
    text-align: center;
}

.pdl-deland-delivery > .pdl-deland-container > p:not(.pdl-deland-kicker) {
    margin: 0 auto 18px;
    color: #555;
    font-size: 16px;
}

.pdl-deland-area-box {
    margin: 30px auto 20px;
    padding: 23px 25px;
    border-left: 4px solid #d71920;
    background: #f4f4f2;
    text-align: left;
}

.pdl-deland-area-box span {
    display: block;
    margin-bottom: 8px;
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.pdl-deland-area-box strong {
    display: block;
    color: #111315;
    font-size: 17px;
    line-height: 1.6;
}

.pdl-deland-delivery-note {
    font-size: 13px !important;
    color: #777 !important;
}


/* =========================================================
   LOCATION
   ========================================================= */

.pdl-deland-location {
    padding: 65px 0;
    background: #f4f4f2;
}

.pdl-deland-location-grid {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 55px;
    align-items: center;
}

.pdl-deland-location p:not(.pdl-deland-kicker) {
    color: #555;
}

.pdl-deland-location address {
    margin: 20px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    font-style: normal;
}

.pdl-deland-location-callout {
    padding: 32px;
    border-radius: 12px;
    background: #111315;
    text-align: center;
}

.pdl-deland-location-callout span {
    display: block;
    margin-bottom: 10px;
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pdl-deland-location-callout a {
    display: block;
    color: #fff;
    font-size: clamp(27px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 900;
    text-decoration: none;
}

.pdl-deland-location-callout small {
    display: block;
    margin-top: 13px;
    color: #aaa;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.pdl-deland-cta {
    padding: 65px 0 60px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-deland-cta h2 {
    color: #fff;
}

.pdl-deland-cta > .pdl-deland-container > p:not(.pdl-deland-kicker) {
    max-width: 680px;
    margin: 0 auto 24px;
    color: #c8c8c8;
    font-size: 16px;
}

.pdl-deland-cta .pdl-deland-buttons {
    justify-content: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .pdl-deland-feature-grid,
    .pdl-deland-location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pdl-deland-feature-dark .pdl-deland-feature-grid {
        direction: ltr;
    }

    .pdl-deland-food-grid {
        grid-template-columns: 1fr;
    }

    .pdl-deland-specials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pdl-deland-container {
        width: min(100% - 28px, 1120px);
    }

    .pdl-deland-page h2 {
        font-size: 30px;
    }

    /*
     * Keep the wide 2000x400 artwork visible on mobile.
     * We don't turn the 5:1 image into a tall cropped background.
     */
    .pdl-deland-hero {
        display: block;
        min-height: 0;
    }

    .pdl-deland-hero-image {
        position: relative;
        inset: auto;
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .pdl-deland-hero-overlay {
        display: none;
    }

    .pdl-deland-hero-content {
        padding-top: 38px;
        padding-bottom: 42px;
        text-align: center;
    }

    .pdl-deland-hero h1 {
        margin-left: auto;
        margin-right: auto;
        font-size: 38px;
        letter-spacing: -1px;
    }

    .pdl-deland-hero-text {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .pdl-deland-hero .pdl-deland-buttons {
        justify-content: center;
    }

    .pdl-deland-intro,
    .pdl-deland-feature,
    .pdl-deland-more,
    .pdl-deland-delivery,
    .pdl-deland-location,
    .pdl-deland-cta {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .pdl-deland-specials {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .pdl-deland-feature-grid {
        gap: 25px;
    }

    .pdl-deland-feature-image {
        border-radius: 10px;
    }

    .pdl-deland-feature-image:hover img,
    .pdl-deland-food-card:hover {
        transform: none;
    }

    .pdl-deland-feature-copy p:not(.pdl-deland-kicker),
    .pdl-deland-intro p:not(.pdl-deland-kicker),
    .pdl-deland-delivery > .pdl-deland-container > p:not(.pdl-deland-kicker) {
        font-size: 15px;
    }

    .pdl-deland-food-grid {
        gap: 11px;
    }

    .pdl-deland-food-card {
        padding: 21px 18px;
    }

    .pdl-deland-area-box {
        padding: 19px;
    }

    .pdl-deland-area-box strong {
        font-size: 15px;
    }

    .pdl-deland-location-callout {
        padding: 26px 18px;
    }

    .pdl-deland-buttons {
        width: 100%;
    }

    .pdl-deland-buttons .pdl-deland-btn {
        flex: 1 1 150px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .pdl-deland-container {
        width: min(100% - 20px, 1120px);
    }

    .pdl-deland-hero h1 {
        font-size: 34px;
    }
}
/* =========================================================
   NORTH DELAND — FINAL DESKTOP TUNING
   ========================================================= */

/* Lighter hero overlay — show more of the pizza image */
.pdl-deland-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(10, 11, 12, .72) 0%,
            rgba(10, 11, 12, .58) 32%,
            rgba(10, 11, 12, .25) 65%,
            rgba(10, 11, 12, .08) 100%
        );
}

/* Slight text shadow keeps hero text readable */
.pdl-deland-hero h1,
.pdl-deland-hero-text,
.pdl-deland-hero .pdl-deland-kicker {
    text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}


/* Compact the intro section */
.pdl-deland-intro {
    padding-top: 52px;
    padding-bottom: 52px;
}


/* Compact lower sections */
.pdl-deland-more {
    padding-top: 55px;
    padding-bottom: 55px;
}

.pdl-deland-specials {
    padding-top: 45px;
    padding-bottom: 45px;
}

.pdl-deland-delivery {
    padding-top: 55px;
    padding-bottom: 55px;
}


/* Keep mobile spacing compact */
@media (max-width: 767px) {

    .pdl-deland-intro,
    .pdl-deland-more,
    .pdl-deland-delivery {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .pdl-deland-specials {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* Mobile hero image has no overlay */
    .pdl-deland-hero h1,
    .pdl-deland-hero-text,
    .pdl-deland-hero .pdl-deland-kicker {
        text-shadow: none;
    }
}
/* =========================================================
   PIZZA DE LEON — DELIVERY AREA PAGE
   ========================================================= */

.pdl-delivery-page {
    background: #fff;
    color: #181818;
}

.pdl-delivery-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.pdl-delivery-narrow {
    max-width: 850px;
}

.pdl-delivery-kicker {
    margin: 0 0 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdl-delivery-page h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.pdl-delivery-page p {
    line-height: 1.7;
}


/* =========================================================
   HERO
   ========================================================= */

.pdl-delivery-hero {
    padding: 65px 0 60px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-delivery-hero .pdl-delivery-container {
    max-width: 900px;
}

.pdl-delivery-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.pdl-delivery-hero-text {
    max-width: 720px;
    margin: 0 auto;
    color: #d0d0d0;
    font-size: 18px;
}


/* =========================================================
   DELIVERY MAP BANNER
   ========================================================= */

.pdl-delivery-banner {
    padding: 38px 0 0;
    background: #fff;
}

.pdl-delivery-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}


/* =========================================================
   INTRO
   ========================================================= */

.pdl-delivery-intro {
    padding: 58px 0 62px;
    background: #fff;
    text-align: center;
}

.pdl-delivery-intro p:not(.pdl-delivery-kicker) {
    margin: 0 auto 15px;
    color: #555;
    font-size: 16px;
}


/* =========================================================
   DELIVERY AREAS
   ========================================================= */

.pdl-delivery-areas {
    padding: 62px 0 65px;
    background: #111315;
    color: #fff;
}

.pdl-delivery-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.pdl-delivery-areas .pdl-delivery-heading h2 {
    color: #fff;
}

.pdl-delivery-heading > p:not(.pdl-delivery-kicker) {
    margin: 0;
    color: #777;
}

.pdl-delivery-areas .pdl-delivery-heading > p:not(.pdl-delivery-kicker) {
    color: #bbb;
}

.pdl-delivery-area-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.pdl-delivery-area-card {
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 24px 20px;
    border: 1px solid #303236;
    border-radius: 12px;
    background: #1a1c1f;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.pdl-delivery-area-card:hover {
    transform: translateY(-5px);
    border-color: #d71920;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.pdl-delivery-area-number {
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pdl-delivery-area-card h3 {
    margin: 14px 0 12px;
    color: #fff;
    font-size: 19px;
    line-height: 1.1;
    font-weight: 900;
}

.pdl-delivery-area-card p {
    margin: 0 0 15px;
    color: #bbb;
    font-size: 13px;
    line-height: 1.6;
}

.pdl-delivery-area-card a {
    margin-top: auto;
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .4px;
    text-decoration: none;
}

.pdl-delivery-area-card a:hover {
    text-decoration: underline;
}


/* =========================================================
   WHAT WE DELIVER
   ========================================================= */

.pdl-delivery-food {
    padding: 62px 0 65px;
    background: #fff;
}

.pdl-delivery-food-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pdl-delivery-food-grid > div {
    padding: 22px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #f7f7f5;
    text-align: center;
}

.pdl-delivery-food-grid strong {
    display: block;
    margin-bottom: 6px;
    color: #111315;
    font-size: 14px;
    font-weight: 900;
}

.pdl-delivery-food-grid span {
    display: block;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}

.pdl-delivery-center-button {
    margin-top: 28px;
    text-align: center;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.pdl-delivery-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    text-decoration: none;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.pdl-delivery-btn:hover {
    transform: translateY(-2px);
}

.pdl-delivery-btn-primary {
    border-color: #d71920;
    background: #d71920;
    color: #fff;
}

.pdl-delivery-btn-primary:hover {
    border-color: #b9141a;
    background: #b9141a;
    color: #fff;
}

.pdl-delivery-btn-dark {
    border-color: #111315;
    background: #111315;
    color: #fff;
}

.pdl-delivery-btn-dark:hover {
    border-color: #d71920;
    background: #d71920;
    color: #fff;
}

.pdl-delivery-btn-outline {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.pdl-delivery-btn-outline:hover {
    background: #fff;
    color: #111315;
}


/* =========================================================
   ADDRESS CHECK
   ========================================================= */

.pdl-delivery-check {
    padding: 58px 0;
    background: #f4f4f2;
}

.pdl-delivery-check-grid {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 55px;
    align-items: center;
}

.pdl-delivery-check p:not(.pdl-delivery-kicker) {
    margin: 0;
    color: #555;
    font-size: 16px;
}

.pdl-delivery-phone {
    padding: 30px;
    border-radius: 12px;
    background: #111315;
    text-align: center;
}

.pdl-delivery-phone span {
    display: block;
    margin-bottom: 10px;
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pdl-delivery-phone a {
    display: block;
    color: #fff;
    font-size: clamp(27px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 900;
    text-decoration: none;
}

.pdl-delivery-phone small {
    display: block;
    margin-top: 12px;
    color: #aaa;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   PICKUP
   ========================================================= */

.pdl-delivery-pickup {
    padding: 58px 0;
    background: #fff;
    text-align: center;
}

.pdl-delivery-pickup p:not(.pdl-delivery-kicker) {
    margin: 0 auto 12px;
    color: #555;
    font-size: 16px;
}

.pdl-delivery-pickup strong {
    color: #111315;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.pdl-delivery-cta {
    padding: 60px 0;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-delivery-cta h2 {
    color: #fff;
}

.pdl-delivery-cta > .pdl-delivery-container > p:not(.pdl-delivery-kicker) {
    max-width: 650px;
    margin: 0 auto 24px;
    color: #c8c8c8;
    font-size: 16px;
}

.pdl-delivery-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .pdl-delivery-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdl-delivery-area-card:last-child {
        grid-column: 1 / -1;
    }

    .pdl-delivery-food-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {

    .pdl-delivery-check-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pdl-delivery-container {
        width: min(100% - 28px, 1120px);
    }

    .pdl-delivery-page h2 {
        font-size: 30px;
    }

    .pdl-delivery-hero {
        padding: 48px 0 45px;
    }

    .pdl-delivery-hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .pdl-delivery-hero-text {
        font-size: 15px;
    }

    /*
     * Keep the 1400x400 banner at its natural aspect ratio.
     * Do not crop the map or text.
     */
    .pdl-delivery-banner {
        padding-top: 24px;
    }

    .pdl-delivery-banner .pdl-delivery-container {
        width: 100%;
    }

    .pdl-delivery-banner img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .pdl-delivery-intro,
    .pdl-delivery-areas,
    .pdl-delivery-food,
    .pdl-delivery-check,
    .pdl-delivery-pickup,
    .pdl-delivery-cta {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .pdl-delivery-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .pdl-delivery-area-card {
        min-height: 220px;
        padding: 18px 15px;
    }

    .pdl-delivery-area-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .pdl-delivery-area-card:hover {
        transform: none;
        box-shadow: none;
    }

    .pdl-delivery-area-card h3 {
        font-size: 16px;
    }

    .pdl-delivery-area-card p {
        font-size: 12px;
    }

    .pdl-delivery-food-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .pdl-delivery-food-grid > div {
        padding: 18px 12px;
    }

    .pdl-delivery-phone {
        padding: 25px 18px;
    }

    .pdl-delivery-buttons {
        width: 100%;
    }

    .pdl-delivery-buttons .pdl-delivery-btn {
        flex: 1 1 145px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .pdl-delivery-container {
        width: min(100% - 20px, 1120px);
    }

    .pdl-delivery-hero h1 {
        font-size: 34px;
    }
}
/* Delivery Area Cards — remove number spacing */

.pdl-delivery-area-card h3 {
    margin-top: 0;
}

.pdl-delivery-area-card {
    border-top: 3px solid #d71920;
}
/* =========================================================
   PIZZA DE LEON — GLOBAL FOOTER
   ========================================================= */

.pdl-global-footer {
    background: #111315;
    color: #fff;
}

.pdl-footer-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.pdl-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr 1fr;
    gap: 65px;
    padding: 58px 0 48px;
}

.pdl-footer-column h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.pdl-footer-brand {
    display: inline-block;
    margin-bottom: 15px;
    color: #fff;
    font-size: 21px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
}

.pdl-footer-brand:hover {
    color: #d71920;
}

.pdl-footer-business p {
    max-width: 360px;
    margin: 0 0 15px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.65;
}

.pdl-footer-phone {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
}

.pdl-footer-phone:hover {
    color: #d71920;
}


/* QUICK LINKS */

.pdl-footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.pdl-footer-nav a {
    color: #aaa;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
}

.pdl-footer-nav a:hover {
    color: #fff;
    transform: translateX(3px);
}


/* LOCATION */

.pdl-footer-column address {
    margin: 0 0 13px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.65;
    font-style: normal;
}

.pdl-footer-pickup-note {
    max-width: 330px;
    margin: 0 0 15px;
    color: #888;
    font-size: 12px;
    line-height: 1.55;
}

.pdl-footer-directions {
    display: inline-block;
    color: #d71920;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
    text-decoration: none;
}

.pdl-footer-directions:hover {
    color: #fff;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.pdl-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0 25px;
    border-top: 1px solid #2b2d30;
}

.pdl-footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.pdl-footer-social > span:first-child {
    color: #777;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.pdl-footer-social a {
    color: #ccc;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.pdl-footer-social a:hover {
    color: #d71920;
}

.pdl-footer-social-pending {
    color: #777;
    font-size: 12px;
}

.pdl-footer-copyright {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   GLOBAL BACK TO TOP
   ========================================================= */

.pdl-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;

    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    background: #d71920;
    color: #fff;

    font-size: 22px;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    box-shadow: 0 5px 18px rgba(0,0,0,.22);

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease,
        background-color .2s ease;
}

.pdl-back-to-top.pdl-back-to-top-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pdl-back-to-top:hover {
    background: #111315;
}

.pdl-back-to-top:focus-visible {
    outline: 3px solid rgba(215,25,32,.35);
    outline-offset: 3px;
}


/* =========================================================
   FOOTER — TABLET
   ========================================================= */

@media (max-width: 850px) {

    .pdl-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 45px;
    }

    .pdl-footer-business {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   FOOTER — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .pdl-footer-container {
        width: min(100% - 32px, 1120px);
    }

    .pdl-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 42px 0 35px;
    }

    .pdl-footer-business {
        grid-column: auto;
    }

    .pdl-footer-brand {
        font-size: 20px;
    }

    .pdl-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 0 24px;
    }

    .pdl-back-to-top {
        right: 15px;
        bottom: 15px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}
/* =========================================================
   HOME — DELIVERY AREA
   ========================================================= */

.pdl-home-delivery {
    padding: 58px 0 62px;
    background: #f4f4f2;
}

.pdl-home-delivery-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.pdl-home-delivery-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.pdl-home-delivery-kicker {
    margin: 0 0 9px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdl-home-delivery-heading h2 {
    margin: 0 0 13px;
    color: #111315;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.pdl-home-delivery-heading > p:last-child {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.65;
}


/* BANNER */

.pdl-home-delivery-banner {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #111315;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

.pdl-home-delivery-banner img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .35s ease;
}

.pdl-home-delivery-banner:hover img {
    transform: scale(1.012);
}


/* BOTTOM */

.pdl-home-delivery-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 20px;
}

.pdl-home-delivery-bottom p {
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.6;
}

.pdl-home-delivery-bottom strong {
    color: #111315;
}

.pdl-home-delivery-button {
    flex-shrink: 0;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 4px;
    background: #d71920;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .6px;
    text-decoration: none;
    transition:
        transform .2s ease,
        background-color .2s ease;
}

.pdl-home-delivery-button:hover {
    transform: translateY(-2px);
    background: #111315;
    color: #fff;
}


/* MOBILE */

@media (max-width: 767px) {

    .pdl-home-delivery {
        padding: 44px 0 46px;
    }

    .pdl-home-delivery-inner {
        width: min(100% - 28px, 1120px);
    }

    .pdl-home-delivery-heading {
        margin-bottom: 22px;
    }

    .pdl-home-delivery-heading h2 {
        font-size: 30px;
    }

    .pdl-home-delivery-heading > p:last-child {
        font-size: 14px;
    }

    /*
     * Keep the complete delivery artwork visible.
     * Do not crop the map or its labels.
     */
    .pdl-home-delivery-banner {
        border-radius: 8px;
    }

    .pdl-home-delivery-banner:hover img {
        transform: none;
    }

    .pdl-home-delivery-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-top: 17px;
        text-align: center;
    }

    .pdl-home-delivery-button {
        width: 100%;
    }
}
/* HOME HERO — MENU + ORDER BUTTONS */

.pdl-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}



@media (max-width: 600px) {

    .pdl-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .pdl-hero-buttons .pdl-primary-button {
        width: min(280px, 100%);
    }
}
/* HOME — GRAND OPENING BANNER SPACING */

.pdl-grand-opening {
    padding-top: 22px;
    padding-bottom: 22px;
}

@media (max-width: 767px) {
    .pdl-grand-opening {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
/* HOME — DELIVERY AREA COMPACT SPACING */

.pdl-home-delivery {
    padding-top: 22px;
    padding-bottom: 22px;
}

@media (max-width: 767px) {
    .pdl-home-delivery {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
/* WHY PIZZA DE LEON — CTA BUTTONS */

.pdl-why-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .pdl-why-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .pdl-why-buttons .pdl-primary-button {
        width: 100%;
        text-align: center;
    }
}

/* PRIVACY POLICY PAGE */

body.privacy-policy .entry-content,
body.privacy-policy main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px 70px;
}

body.privacy-policy .entry-content {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}

body.privacy-policy .entry-content h2 {
    margin-top: 38px;
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.2;
    color: #111315;
}

body.privacy-policy .entry-content p {
    margin: 0 0 18px;
}

body.privacy-policy .entry-content ul {
    margin: 0 0 22px 22px;
    padding: 0;
}

body.privacy-policy .entry-content li {
    margin-bottom: 6px;
}

@media (max-width: 767px) {

    body.privacy-policy .entry-content,
    body.privacy-policy main {
        padding: 38px 20px 50px;
    }

    body.privacy-policy .entry-content {
        font-size: 15px;
    }

    body.privacy-policy .entry-content h2 {
        font-size: 22px;
        margin-top: 30px;
    }
}
/* =========================================================
   PIZZA DE LEON - ORDER ONLINE PAGE
   ========================================================= */

.pdl-order-page {
    background: #f5f3ef;
    color: #111315;
}

.pdl-order-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.pdl-order-kicker,
.pdl-card-kicker {
    display: block;
    color: #d5092f;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}


/* =========================================================
   HERO
   ========================================================= */

.pdl-order-hero {
    position: relative;
    padding: 78px 0 84px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 45%, rgba(0,0,0,.08), transparent 34%),
        radial-gradient(circle at 100% 45%, rgba(0,0,0,.08), transparent 34%),
        #111315;
    color: #fff;
    text-align: center;
}

.pdl-order-hero .pdl-order-kicker {
    margin-bottom: 18px;
}

.pdl-order-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(42px, 5.1vw, 64px);
    font-weight: 900;
    letter-spacing: .5px;
    line-height: 1;
}

.pdl-order-hero p {
    margin: 0;
    color: #e2e2e2;
    font-size: 20px;
    line-height: 1.55;
}


/* =========================================================
   MAIN ORDERING AREA
   ========================================================= */

.pdl-order-main {
    padding: 0 0 60px;
    background: #f5f3ef;
}


/* =========================================================
   DIRECT ORDER CARD
   ========================================================= */

.pdl-direct-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    max-width: 1080px;
    min-height: 215px;
    margin: -34px auto 0;
    padding: 30px 42px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    align-items: center;
}

.pdl-direct-image {
    display: flex;
    min-height: 150px;
    padding-right: 38px;
    border-right: 1px solid #d3d3d3;
    align-items: center;
    justify-content: center;
}

.pdl-direct-image img {
    display: block;
    width: 190px;
    max-width: 100%;
    height: 135px;
    object-fit: contain;
}

.pdl-direct-content {
    padding-left: 45px;
}

.pdl-direct-content .pdl-card-kicker {
    margin-bottom: 8px;
}

.pdl-direct-content h2 {
    margin: 0 0 6px;
    color: #111315;
    font-size: clamp(25px, 2.6vw, 34px);
    font-weight: 900;
    line-height: 1.08;
}

.pdl-direct-support,
.pdl-direct-description {
    margin: 0;
    color: #444;
    font-size: 17px;
    line-height: 1.45;
}

.pdl-free-delivery {
    margin: 9px 0 5px;
    color: #d5092f;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}


/* DIRECT ORDER BUTTON */

.pdl-direct-order-button {
    display: inline-flex;
    min-height: 48px;
    margin-top: 17px;
    padding: 12px 27px;
    border-radius: 4px;
    background: #d5092f;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .4px;
    line-height: 1;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-transform: uppercase;
}

a.pdl-direct-order-button:hover {
    background: #b90729;
    color: #fff;
}


/* =========================================================
   PARTNERS HEADING
   ========================================================= */

.pdl-partners-heading {
    max-width: 850px;
    margin: 42px auto 28px;
    text-align: center;
}

.pdl-partners-heading .pdl-order-kicker {
    margin-bottom: 12px;
}

.pdl-partners-heading h2 {
    margin: 0 0 10px;
    color: #111315;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.05;
}

.pdl-partners-heading p {
    margin: 0;
    color: #444;
    font-size: 18px;
    line-height: 1.5;
}


/* =========================================================
   DOORDASH / UBER EATS CARDS
   ========================================================= */

.pdl-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.pdl-partner-card {
    display: flex;
    min-height: 275px;
    padding: 30px 32px 28px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.pdl-partner-logo {
    display: flex;
    width: 100%;
    height: 82px;
    margin-bottom: 8px;
    align-items: center;
    justify-content: center;
}

.pdl-partner-logo img {
    display: block;
    width: auto;
    max-width: 285px;
    max-height: 72px;
    object-fit: contain;
}

.pdl-partner-card p {
    margin: 4px 0 24px;
    color: #444;
    font-size: 18px;
    line-height: 1.5;
}

.pdl-partner-button {
    display: flex;
    width: 100%;
    min-height: 60px;
    margin-top: auto;
    padding: 14px 20px;
    border-radius: 6px;
    background: #d5092f;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .2px;
    line-height: 1.2;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

a.pdl-partner-button:hover {
    background: #b90729;
    color: #fff;
}


/* LINKS EMPTY - STILL LOOK ACTIVE FOR DESIGN */

.pdl-order-disabled {
    cursor: default;
    opacity: 1;
}


/* =========================================================
   BENEFITS STRIP
   ========================================================= */

.pdl-order-benefits {
    padding: 32px 0;
    border-top: 1px solid #e3e0da;
    border-bottom: 1px solid #e3e0da;
    background: #ece9e3;
}

.pdl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1080px;
    margin: 0 auto;
}

.pdl-benefit {
    display: flex;
    min-height: 92px;
    padding: 5px 34px;
    align-items: center;
    gap: 22px;
}

.pdl-benefit + .pdl-benefit {
    border-left: 1px solid #c9c5be;
}

.pdl-benefit-icon {
    flex: 0 0 auto;
    color: #d5092f;
    font-size: 47px;
    line-height: 1;
}

.pdl-benefit strong {
    display: block;
    margin-bottom: 5px;
    color: #111315;
    font-size: 16px;
    font-weight: 900;
}

.pdl-benefit span {
    display: block;
    color: #444;
    font-size: 14px;
    line-height: 1.45;
}


/* =========================================================
   PHONE
   ========================================================= */

.pdl-order-phone-section {
    padding: 52px 0 56px;
    background: #111315;
    color: #fff;
    text-align: center;
}

.pdl-order-phone-section .pdl-order-kicker {
    margin-bottom: 13px;
}

.pdl-order-phone {
    display: block;
    width: fit-content;
    margin: 0 auto 9px;
    color: #fff;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.pdl-order-phone:hover {
    color: #d5092f;
}

.pdl-order-phone-section p {
    margin: 0;
    color: #d0d0d0;
    font-size: 16px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pdl-order-container {
        width: calc(100% - 30px);
    }

    .pdl-order-kicker,
    .pdl-card-kicker {
        font-size: 11px;
        letter-spacing: 3px;
    }


    /* HERO */

    .pdl-order-hero {
        padding: 58px 0 68px;
    }

    .pdl-order-hero h1 {
        font-size: 39px;
        line-height: 1.05;
    }

    .pdl-order-hero p {
        font-size: 17px;
    }


    /* DIRECT */

    .pdl-direct-card {
        grid-template-columns: 1fr;
        margin-top: -25px;
        padding: 28px 22px 30px;
        border-radius: 12px;
        text-align: center;
    }

    .pdl-direct-image {
        min-height: auto;
        margin-bottom: 22px;
        padding: 0 0 22px;
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .pdl-direct-image img {
        width: 170px;
        height: 115px;
    }

    .pdl-direct-content {
        padding-left: 0;
    }

    .pdl-direct-content h2 {
        font-size: 27px;
    }

    .pdl-direct-support,
    .pdl-direct-description {
        font-size: 16px;
    }

    .pdl-free-delivery {
        margin: 12px 0 7px;
        font-size: 20px;
    }

    .pdl-direct-order-button {
        width: 100%;
        min-height: 54px;
        margin-top: 20px;
    }


    /* PARTNERS */

    .pdl-partners-heading {
        margin: 38px auto 24px;
    }

    .pdl-partners-heading h2 {
        font-size: 31px;
    }

    .pdl-partners-heading p {
        font-size: 16px;
    }

    .pdl-partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pdl-partner-card {
        min-height: 255px;
        padding: 26px 22px 22px;
    }

    .pdl-partner-logo {
        height: 72px;
    }

    .pdl-partner-logo img {
        max-width: 235px;
        max-height: 62px;
    }

    .pdl-partner-card p {
        font-size: 16px;
    }

    .pdl-partner-button {
        min-height: 57px;
        font-size: 15px;
    }

    .pdl-order-main {
        padding-bottom: 42px;
    }


    /* BENEFITS */

    .pdl-order-benefits {
        padding: 14px 0;
    }

    .pdl-benefits-grid {
        grid-template-columns: 1fr;
    }

    .pdl-benefit {
        min-height: 100px;
        padding: 20px 10px;
    }

    .pdl-benefit + .pdl-benefit {
        border-top: 1px solid #c9c5be;
        border-left: 0;
    }

    .pdl-benefit-icon {
        width: 58px;
        font-size: 42px;
        text-align: center;
    }


    /* PHONE */

    .pdl-order-phone-section {
        padding: 45px 0 48px;
    }

    .pdl-order-phone {
        font-size: 36px;
    }

    .pdl-order-phone-section p {
        font-size: 15px;
    }
}
/* =========================================================
   ORDER ONLINE - FINAL CARD TUNING
   ========================================================= */


/* 1. Keep Direct Order heading on one line */

.pdl-direct-content h2 {
    font-size: 27px;
    white-space: nowrap;
}


/* 2. Make SUPPORT LOCAL more prominent */

.pdl-direct-content .pdl-card-kicker {
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 9px;
}


/* 3. Smooth hover animation for all ordering cards */

.pdl-direct-card,
.pdl-partner-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* Direct Order hover */

.pdl-direct-card:hover {
    transform: translateY(-5px);
    border-color: #d7d7d7;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
}


/* DoorDash + Uber Eats hover */

.pdl-partner-card:hover {
    transform: translateY(-5px);
    border-color: #d7d7d7;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}


/* Slight logo movement on partner card hover */

.pdl-partner-logo img {
    transition: transform 0.25s ease;
}

.pdl-partner-card:hover .pdl-partner-logo img {
    transform: scale(1.035);
}


/* Keep mobile heading responsive */

@media (max-width: 767px) {

    .pdl-direct-content h2 {
        font-size: 26px;
        white-space: normal;
    }

    .pdl-direct-content .pdl-card-kicker {
        font-size: 13px;
    }

    /* No lifting cards on touch screens */
    .pdl-direct-card:hover,
    .pdl-partner-card:hover {
        transform: none;
    }

    .pdl-partner-card:hover .pdl-partner-logo img {
        transform: none;
    }
}
/* Direct Order Button - larger and wider */
.pdl-direct-order-button {
    min-width: 320px;
    padding: 17px 36px;
    font-size: 16px;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
}
/* Build Your Pizza - reduce height of steps 1 & 2 */
.pdl-build-steps > .pdl-build-step:nth-child(1),
.pdl-build-steps > .pdl-build-step:nth-child(2) {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

/* Remove extra vertical margins inside first two cards */
.pdl-build-steps > .pdl-build-step:nth-child(1) h3,
.pdl-build-steps > .pdl-build-step:nth-child(2) h3 {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

.pdl-build-steps > .pdl-build-step:nth-child(2) p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
/* Specials - Final CTA buttons same size and color */
.pdl-specials-cta-buttons .pdl-specials-button {
    width: 176px !important;
    min-height: 48px !important;
    padding: 14px 20px !important;
    box-sizing: border-box;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    background: #e51b23 !important;
    border: 2px solid #e51b23 !important;
    color: #ffffff !important;
}