/*
Theme Name: Punjabi Kabab & Gyro
Theme URI: http://localhost/punjabi-kabab-gyro/
Author: Soft System Solution
Description: Block theme for Punjabi Kabab & Gyro. Child of Twenty Twenty-Four.
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.0
Version: 1.0.5
Template: twentytwentyfour
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: punjabi-kabab-gyro
Tags: full-site-editing, block-patterns, block-styles, custom-logo, editor-style
*/

/* ==========================
   Global / Reset
========================== */
body {
    margin: 0;
}

html {
    overflow-x: hidden;
}
input[type="radio"] {
    accent-color: #8b0b12;
}
a:focus {
    outline: none;
}

.wp-site-blocks {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.wp-site-blocks>.wp-block-group,
.wp-site-blocks>header,
.wp-site-blocks>footer,
.wp-site-blocks>main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.wp-block-group {
    box-sizing: border-box;
}

.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.is-layout-flow> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none !important;
}

.entry-content>*,
.wp-block-post-content>* {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* ==========================
   Design Base
========================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Roboto+Condensed:wght@400;500;600;700&family=Yellowtail&display=swap');

/* =====================================================
   Root Variables
===================================================== */
:root {
    --pk-primary: #951017;
    --pk-primary-dark: #78080e;
    --pk-header-bg: #e4e163;
    --pk-yellow: #eee52f;
    --pk-yellow-light: #e8e46f;
    --pk-dark: #090a0b;
    --pk-dark-soft: #101112;
    --pk-white: #ffffff;
    --pk-heading-font: "Bebas Neue", sans-serif;
    --pk-body-font: "Roboto", sans-serif;
    --rp-script-font: "Yellowtail", cursive;
}


/* =====================================================
   Reset
===================================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--pk-dark);
    background: #ffffff;
    font-family: var(--pk-body-font);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

img,
svg {
    display: block;
}

.pk-svg-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}


/* =====================================================
   Reusable Common Classes
===================================================== */
.common-section-padding {
    padding-top: 90px;
    padding-bottom: 90px;
}

.common-section-heading {
    margin: 0;
    font-family: var(--pk-heading-font);
    font-size: clamp(52px, 5vw, 82px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.common-subheading {
    margin: 0 0 14px;
    color: var(--pk-primary);
    font-family: var(--pk-heading-font);
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.common-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.common-btn:hover {
    transform: translateY(-2px);
}


/* =====================================================
   Header
===================================================== */
.pk-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: var(--pk-header-bg);
}

.pk-header .navbar {
    min-height: 124px;
    padding: 0;
}

.pk-header-container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 40px;
}


/* Reserved logo area */
.pk-brand-space {
    display: block;
    width: 220px;
    min-width: 220px;
    margin: 0 54px 0 0;
    padding: 0;
}

/* Navigation */
.pk-main-menu {
    display: flex;
    align-items: center;
    gap: clamp(38px, 4vw, 76px);
}

.pk-main-menu .nav-link {
    position: relative;
    padding: 17px 0 !important;
    color: #080808;
    font-family: var(--pk-heading-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.pk-main-menu .nav-link::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    margin: auto;
    content: "";
    background: var(--pk-primary);
    transition: width 0.25s ease;
}

.pk-main-menu .nav-link:hover,
.pk-main-menu .nav-link.active {
    color: var(--pk-primary);
}

.pk-main-menu .nav-link:hover::after,
.pk-main-menu .nav-link.active::after {
    width: 100%;
}


/* Header actions */
.pk-header-actions {
    margin-left: 65px;
}

.pk-phone-block {
    display: flex;
    align-items: center;
    color: #090909;
}

.pk-phone-icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    margin-right: 16px;
    align-items: center;
    justify-content: center;
    flex: 0 0 72px;
    border-radius: 50%;
    color: var(--pk-header-bg);
    background: var(--pk-primary);
}

.pk-phone-icon svg {
    width: 38px;
    height: 38px;
}

.pk-phone-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.pk-phone-content small {
    margin-bottom: 8px;
    color: #171717;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.pk-phone-content strong {
    color: #050505;
    font-family: var(--pk-heading-font);
    font-size: 39px;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pk-order-btn {
    width: 100%;
    min-height: 65px;
    padding: 6px 15px;
    gap: 19px;
    border: 1px solid rgba(69, 0, 0, 0.35);
    border-radius: 7px;
    color: #ffffff;
    background: linear-gradient(90deg,
            #7e090f 0%,
            #a00e16 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 2px 2px rgba(0, 0, 0, 0.08);
    font-family: var(--pk-heading-font);
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pk-order-icon {
    width: 35px;
    height: 35px;
}

.pk-order-btn:hover {
    color: #ffffff;
    background: #76090e;
}


/* Mobile toggler */
.pk-navbar-toggler {
    display: flex;
    width: 48px;
    height: 44px;
    padding: 9px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 2px solid var(--pk-primary);
    border-radius: 4px;
    box-shadow: none !important;
}

.navbar-toggler-line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--pk-primary);
}


/* =====================================================
   Hero Section
===================================================== */
.pk-hero-section {
    position: relative;
    min-height: auto;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 25% 45%,
            rgba(255, 255, 255, 0.035),
            transparent 29%),
        linear-gradient(90deg,
            #0a0b0c 0%,
            #0a0b0c 48%,
            #0b0c0d 100%);
    /* height: 100vh; */
}


/* Reserved future visual area */
.pk-hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 105px;
    left: 48%;
    z-index: 1;
    pointer-events: none;

    /* background-image: url("https://develop.stackblue.com/punjabi-kabab-gyro/wp-content/uploads/2026/08/slide-4-2.jpg"); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    all: unset;
}

.page-id-14 #home {
    background-image: url("https://develop.stackblue.com/punjabi-kabab-gyro/wp-content/uploads/2026/08/slide-4-2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    min-height: 422px;
}


.pk-hero-visual::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg,
            #0a0b0c 0%,
            rgba(10, 11, 12, 0.86) 20%,
            rgba(10, 11, 12, 0.15) 65%,
            rgba(10, 11, 12, 0) 100%);
}

.pk-hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1780px;
    min-height: 100%;
    margin: 0 auto;
    padding: 90px 14px 90px !important;
}

.pk-hero-content {
    width: 100%;
    max-width: 755px;
    position: relative;
    z-index: 6;
}

.pk-hero-eyebrow {
    margin-bottom: 7px;
    color: var(--pk-yellow);
    font-size: 35px;
    line-height: 0.92;
    letter-spacing: 1px;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.45);
    margin-bottom: 15px;
}

.pk-contacthero-eyebrow {
    margin: 0;
    color: var(--pk-yellow);
    font-family: var(--rp-script-font);
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
}

.pk-hero-title {
    margin: 0;
    color: #f3f3f3;
    font-size: 80px;
    line-height: 0.83;
    letter-spacing: 2px;
    text-shadow: 4px 5px 0 rgba(0, 0, 0, 0.45),
        0 0 2px rgba(255, 255, 255, 0.45);
    margin-top: 21px;
}

.pk-contacthero-title {
    font-size: 65px;
    /* line-height: 0.83; */
    /* letter-spacing: 2px; */
    /* text-shadow: 4px 5px 0 rgba(0, 0, 0, 0.45), 0 0 2px rgba(255, 255, 255, 0.45); */
}

.page-id-22 .pk-contacthero-title {
    font-size: 65PX;
}

.pk-hero-tagline {
    display: flex;
    margin: 19px 0 23px;
    align-items: center;
    gap: 18px;
    color: var(--pk-yellow);
    font-family: var(--pk-heading-font);
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pk-hero-tagline i {
    display: block;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: var(--pk-yellow);
}


/* =====================================================
   Hero CTA Buttons
===================================================== */
.pk-hero-buttons {
    display: flex;
    align-items: stretch;
    gap: 18px;
}

.pk-service-btn {
    width: 344px;
    min-height: 98px;
    padding: 12px 27px;
    justify-content: flex-start;
    border: 1px solid #d5c52c;
    border-radius: 8px;
    text-transform: none;
}

.pk-service-btn-red {
    color: #ffffff;
    background: linear-gradient(90deg,
            #850a10 0%,
            #a41119 100%);
}

.pk-service-btn-red:hover {
    color: #ffffff;
    background: #77080e;
}

.pk-service-btn-yellow {
    color: #070707;
    background: linear-gradient(90deg,
            #eae670 0%,
            #dfdc60 100%);
}

.pk-service-btn-yellow:hover {
    color: #070707;
    background: #d6d252;
}

.pk-service-btn-icon {
    display: inline-flex;
    width: 59px;
    min-width: 59px;
    margin-right: 17px;
    align-items: center;
    justify-content: center;
}

.pk-service-btn-icon svg {
    width: 49px;
    height: 49px;
}

.pk-service-btn-yellow .pk-service-btn-icon svg {
    width: 58px;
    height: 48px;
}

.pk-service-btn-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.pk-service-btn-content strong {
    font-family: var(--pk-heading-font);
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pk-service-btn-content small {
    margin-top: 9px;
    font-size: 21px;
    font-weight: 400;
    white-space: nowrap;
}


/* =====================================================
   CSS Fresh Badge
===================================================== */
.pk-fresh-badge {
    position: absolute;
    top: 47px;
    right: 72px;
    z-index: 10;
    display: flex;
    width: 176px;
    height: 176px;
    padding: 20px 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 4px solid #e6d817;
    border-radius: 50%;
    color: #ffffff;
    background: #050607;
    box-shadow:
        0 0 0 3px #050607,
        0 0 0 5px rgba(230, 216, 23, 0.35),
        0 10px 22px rgba(0, 0, 0, 0.55);
    font-family: var(--pk-heading-font);
    line-height: 0.96;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-2deg);
    display: none;
}

.pk-fresh-badge::before {
    position: absolute;
    inset: 8px;
    content: "";
    border: 1px solid rgba(230, 216, 23, 0.25);
    border-radius: 50%;
}

.pk-fresh-badge-text,
.pk-fresh-badge-highlight {
    position: relative;
    z-index: 2;
    display: block;
}

.pk-fresh-badge-text {
    color: #ffffff;
    font-size: 29px;
    letter-spacing: 0.3px;
}

.pk-fresh-badge-highlight {
    margin: 5px 0;
    color: var(--pk-yellow);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.5px;
}


/* =====================================================
   Hero Bottom Information Bar
===================================================== */
.pk-info-bar {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    min-height: 105px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(7, 8, 9, 0.96);
    display: none;
}

.pk-info-container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 34px;
}

.pk-info-item {
    position: relative;
    display: flex;
    min-height: 105px;
    padding: 15px 31px;
    align-items: center;
}

.pk-info-item::after {
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
    width: 2px;
    content: "";
    background: rgba(255, 255, 255, 0.19);
}

.pk-info-item-last::after {
    display: none;
}

.pk-info-icon {
    display: inline-flex;
    width: 65px;
    min-width: 65px;
    margin-right: 18px;
    align-items: center;
    justify-content: center;
    color: var(--pk-yellow);
}

.pk-info-icon svg {
    width: 54px;
    height: 54px;
}

.pk-info-scooter-icon svg {
    width: 63px;
    height: 52px;
}

.pk-info-truck-icon svg {
    width: 67px;
    height: 53px;
}

.pk-info-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    color: #ffffff;
    line-height: 1.05;
}

.pk-info-content strong {
    font-family: var(--pk-heading-font);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pk-info-content small {
    margin-top: 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
}

/* =====================================================
   Shared Section Container
===================================================== */
.pk-content-container {
    width: 100%;
    max-width: 2048px;
    margin: 0 auto;
    padding-right: 28px;
    padding-left: 28px;
}


/* =====================================================
   Order Process Section
===================================================== */
.pk-order-process-section {
    padding: 15px 0;
    background: radial-gradient(circle at 20% 30%,
            rgba(147, 104, 54, 0.07),
            transparent 25%),
        #f7f2e8;
    background: #8b0e14;
}

.pk-order-steps-panel,
.pk-order-benefits-panel {
    min-height: 90px;
    border-radius: 10px;
}

.pk-order-steps-panel {
    display: flex;
    padding: 13px 27px;
    align-items: center;
    color: var(--pk-white);
    justify-content: space-between;
    gap: 2rem;
    padding-top: 0px;
    padding-bottom: 0px;
}

.pk-order-phone {
    display: inline-flex;
    width: 75px;
    height: 75px;
    margin-right: 18px;
    align-items: center;
    justify-content: center;
    flex: 0 0 75px;
    color: #ffffff;
}

.pk-order-phone svg {
    width: 43px;
    height: 53px;
}

.pk-order-steps-content {
    width: 100%;
    min-width: 0;
}

.pk-order-steps-content h2 {
    margin: 0 0 9px;
    color: var(--pk-yellow);
    font-family: var(--pk-heading-font);
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.pk-order-step-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15rem;
}

.pk-order-step {
    display: flex;
    min-width: 0;
    align-items: center;
    color: #ffffff;
    font-size: 19px;
    line-height: 1;
    white-space: nowrap;
}

.pk-order-step-number {
    display: inline-flex;
    width: 31px;
    height: 31px;
    margin-right: 9px;
    align-items: center;
    justify-content: center;
    flex: 0 0 31px;
    border: 3px solid var(--pk-yellow);
    border-radius: 50%;
    color: var(--pk-yellow);
    background: #490409;
    font-family: var(--pk-heading-font);
    font-size: 22px;
    line-height: 1;
}


/* Order benefits */
.pk-order-benefits-panel {
    display: flex;
    padding: 14px 20px;
    align-items: stretch;
    background:
        linear-gradient(90deg,
            #e2df7c 0%,
            #ece9a2 50%,
            #dfdc72 100%);
}

.pk-order-benefit {
    position: relative;
    display: flex;
    width: 33.333%;
    min-width: 0;
    padding: 0 24px;
    align-items: center;
}

.pk-order-benefit:not(:last-child)::after {
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 2px;
    content: "";
    background: rgba(57, 52, 28, 0.24);
}

.pk-order-benefit-icon {
    display: inline-flex;
    width: 63px;
    min-width: 63px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    color: #111111;
}

.pk-order-benefit-icon svg {
    width: 56px;
    height: 56px;
}

.pk-order-benefit-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1;
}

.pk-order-benefit-text strong {
    color: #111111;
    font-family: var(--pk-heading-font);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pk-order-benefit-text small {
    margin-top: 8px;
    color: #1d1d1d;
    font-size: 16px;
    white-space: nowrap;
}


/* =====================================================
   Menu Section
===================================================== */
.pk-menu-section {
    padding: 70px 0px;
    background: #fff;
}

.pk-menu-heading {
    display: flex;
    min-height: 67px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 25px;
}

.pk-menu-heading .common-section-heading {
    color: var(--pk-primary);
    font-size: 45px;
    line-height: 1;
    letter-spacing: 1px;
}

.pk-menu-heading-decoration {
    width: 70px;
    height: 30px;
    color: #2c9558;
    display: none;
}

.pk-menu-heading-decoration-right {
    transform: scaleX(-1);
}


/* Menu rows */
.pk-menu-row {
    margin-bottom: 15px;
}

.pk-menu-row:last-child {
    margin-bottom: 0;
}

.pk-menu-card {
    position: relative;
    display: flex;
    min-height: 185px;
    padding: 13px !important;
    overflow: hidden;
    flex-direction: column;
    border: 2px solid #ead8c8;
    border-radius: 11px;
    background: rgba(255, 253, 248, 0.76);
    box-shadow: inset 0 0 18px rgba(142, 76, 25, 0.025),
        0 1px 1px rgba(83, 51, 25, 0.025);
    padding-left: 10px;
    padding-right: 10px;
    background: transparent;
}

.pk-menu-card h3 {
    position: relative;
    z-index: 3;
    margin: 0 0 12px;
    padding: 0 73px;
    color: var(--pk-primary);
    font-family: var(--pk-heading-font);
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.4px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 25px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
}

.pk-menu-card-thumb {
    position: absolute;
    top: -7px;
    right: 7px;
    z-index: 2;
    width: 112px;
    height: 80px;
    border-radius: 50%;
    background-image:
        var(--dish-image),
        radial-gradient(ellipse at center,
            #f39224 0%,
            #a83d0e 40%,
            #2b1308 67%,
            transparent 69%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.22));
}


.pk-menu-list {
    position: relative;
    z-index: 1;
    display: flex;
    margin-top: 1px;
    flex: 1 1 auto;
    flex-direction: column;
    row-gap: 17px;
}

.pk-menu-item {
    display: flex;
    min-width: 0;
    min-height: 24px;
    align-items: baseline;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.05;
}

.pk-menu-number {
    width: 34px;
    min-width: 34px;
    color: #111111;
    display: none;
}

.pk-menu-name {
    flex: 0 1 auto;
}

.pk-menu-dots {
    min-width: 10px;
    margin: 0 5px 5px;
    flex: 1 1 auto;
    border-bottom: 2px dotted #b6b4ae;
}

.pk-menu-price {
    color: #101010;
    font-weight: 600;
    white-space: nowrap;
}


.pk-menu-order-btn {
    min-width: 142px;
    min-height: 31px;
    margin: 10px auto 0;
    padding: 10px 15px;
    gap: 4px;
    border-radius: 4px;
    color: #ffffff;
    background: linear-gradient(180deg,
            #a3151c 0%,
            #79080e 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 1px 2px rgba(0, 0, 0, 0.18);
    font-family: var(--pk-heading-font);
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.pk-menu-order-btn svg {
    width: 14px;
    display: none;
    height: 14px;
}

.pk-menu-order-btn:hover {
    color: #ffffff;
    background: #70070c;
}


/* Catering card */
.pk-catering-card {
    display: flex;
    min-height: 185px;
    padding: 18px 30px;
    justify-content: center;
    flex-direction: column;
    border-radius: 11px;
    background:
        linear-gradient(90deg,
            #d7d44e 0%,
            #e5e177 50%,
            #d6d349 100%);
}

.pk-catering-top {
    display: flex;
    margin-bottom: 17px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 11px;
}

.pk-catering-icon {
    display: inline-flex;
    width: 55px;
    min-width: 65px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    color: #080808;
}

.pk-catering-icon svg {
    width: 72px;
    height: 64px;
}

.pk-catering-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.pk-catering-content strong {
    font-family: var(--pk-heading-font);
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pk-catering-content small {
    margin-top: 7px;
    font-size: 19px;
}

.pk-catering-btn {
    width: max-content;
    margin-inline: auto;
    min-width: 142px;
    min-height: 31px;
    margin: 10px auto 0;
    padding: 10px 15px;
    gap: 4px;
    border-radius: 4px;
    color: #ffffff;
    background: linear-gradient(180deg, #a3151c 0%, #79080e 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 2px rgba(0, 0, 0, 0.18);
    font-family: var(--pk-heading-font);
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.pk-catering-btn svg {
    width: 21px;
    height: 21px;
    display: none;
}

.pk-catering-btn:hover {
    color: #ffffff;
    background: #70070c;
}


/* =====================================================
   Today's Specials
===================================================== */
.pk-today-specials-section {
    padding: 70px 0;
    color: #ffffff;
    background: radial-gradient(circle at 20% 50%,
            rgba(255, 255, 255, 0.035),
            transparent 30%),
        #090a0b;
}

.pk-specials-left {
    height: 100%;
}

.pk-specials-heading {
    margin: 0 0 9px 9px;
    color: var(--pk-yellow);
    font-family: var(--pk-heading-font);
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.pk-specials-left>.row>.col-lg-4:nth-child(1) .image-card img {}

.pk-specials-left>.row>.col-lg-4:nth-child(2) .image-card img {
    max-width: 335px;
}

.pk-specials-left>.row>.col-lg-4:nth-child(3) .image-card img {}

.image-card img {
    width: 100%;
    max-width: 310px;
    margin-bottom: 17px;
}

.pk-special-card {
    position: relative;
    min-height: 235px;
    padding: 17px 15px;
    overflow: visible;
    border: 2px solid rgba(226, 201, 19, 0.45);
    border-radius: 9px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.008)),
        #111213;
    display: flex;
    text-align: center;
    align-items: end;
    flex-direction: column-reverse;
    align-items: center;
}

.pk-special-copy {
    position: relative;
    z-index: 5;
    width: 52%;
}

.pk-special-copy h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: var(--pk-heading-font);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pk-special-copy h3 br {
    display: none;
}

.pk-special-copy p {
    margin: 0 0 16px;
    color: #eeeeee;
    font-size: 16px;
    display: none;
    line-height: 1.35;
}

.pk-special-price {
    display: block;
    color: var(--pk-yellow);
    font-family: var(--pk-heading-font);
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
}

.pk-special-food-image {
    position: absolute;
    right: -7px;
    bottom: -12px;
    z-index: 2;
    width: 75%;
    height: 85%;
    background-image: var(--special-image),
        radial-gradient(ellipse at center,
            #f39b1c 0%,
            #a7470b 37%,
            #2e1609 62%,
            transparent 64%);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.55));
}

.pk-save-badge {
    position: absolute;
    top: 9px;
    right: 58px;
    z-index: 8;
    display: flex;
    width: 69px;
    height: 69px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    color: #ffffff;
    background: #e21b20;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-5deg);
    display: none;
}

.pk-save-badge::before,
.pk-save-badge::after {
    position: absolute;
    inset: -3px;
    z-index: -1;
    content: "";
    background: #e21b20;
    clip-path: polygon(50% 0%,
            59% 10%,
            72% 4%,
            77% 17%,
            91% 16%,
            89% 30%,
            100% 38%,
            90% 50%,
            100% 62%,
            88% 70%,
            91% 85%,
            76% 84%,
            71% 98%,
            58% 90%,
            50% 100%,
            41% 90%,
            28% 97%,
            23% 83%,
            9% 85%,
            11% 70%,
            0% 62%,
            10% 50%,
            0% 38%,
            12% 30%,
            9% 16%,
            24% 17%,
            29% 4%,
            42% 10%);
    display: none;
}

.pk-save-badge small {
    position: relative;
    z-index: 2;
    font-family: var(--pk-heading-font);
    font-size: 17px;
}

.pk-save-badge strong {
    position: relative;
    z-index: 2;
    margin-top: 4px;
    font-family: var(--pk-heading-font);
    font-size: 31px;
    font-weight: 400;
}


/* Right information panel */
.pk-special-information-panel {
    height: 100%;
    min-height: 295px;
    padding: 21px 28px;
    border-radius: 11px;
    color: #101010;
    background:
        linear-gradient(90deg,
            #dcda6a 0%,
            #e9e795 50%,
            #dcda68 100%);
}

.pk-special-address {
    display: flex;
    padding-bottom: 20px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.pk-special-address svg {
    width: 40px;
    height: 54px;
    margin-right: 17px;
    flex: 0 0 40px;
    color: var(--pk-primary);
}

.pk-special-address strong {
    font-size: 22px;
    line-height: 1.16;
}

.pk-special-address strong span {
    display: block;
}

.pk-special-information-bottom {
    display: flex;
    min-height: 160px;
    border-top: 0;
}

.pk-open-days-block,
.pk-free-delivery-block {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.pk-open-days-block {
    padding: 10px 24px 0 0;
    border-right: 2px solid rgba(68, 60, 29, 0.17);
}

.pk-open-days-block small {
    margin-bottom: 9px;
    font-family: var(--pk-heading-font);
    font-size: 20px;
    text-transform: uppercase;
}

.pk-open-days-block strong {
    margin-bottom: 9px;
    font-family: var(--pk-heading-font);
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.pk-open-days-block span {
    font-size: 23px;
    font-weight: 600;
    white-space: nowrap;
}

.pk-free-delivery-block {
    padding: 10px 0 0 25px;
}

.pk-free-delivery-heading {
    display: flex;
    flex-direction: column;
}

.pk-free-delivery-heading strong {
    font-family: var(--pk-heading-font);
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.pk-free-delivery-heading span {
    margin-top: 7px;
    font-size: 18px;
    font-weight: 600;
}

.pk-free-delivery-time {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
}

.pk-free-delivery-time svg {
    width: 93px;
    height: 69px;
    margin-right: 14px;
    color: #090909;
}

.pk-free-delivery-time>span {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.pk-free-delivery-time small {
    margin: 4px 0;
    font-size: 13px;
    font-weight: 700;
}

/* =====================================================
   Shared Container
===================================================== */
.pk-footer-container {
    width: 100%;
    max-width: 2048px;
    margin: 0 auto;
    padding-right: 66px;
    padding-left: 66px;
}


/* =====================================================
   Highlights Section
===================================================== */
.pk-highlights-section {
    position: relative;
    z-index: 2;
    padding: 29px 0 26px;
    border-top: 2px solid #f3ecdf;
    border-bottom: 3px solid #ddd5c7;
    background:
        radial-gradient(circle at 11% 24%,
            rgba(170, 123, 61, 0.08),
            transparent 19%),
        radial-gradient(circle at 52% 55%,
            rgba(170, 123, 61, 0.05),
            transparent 21%),
        linear-gradient(90deg,
            #f6f0e5 0%,
            #fbf8f1 48%,
            #f6efe4 100%);
}

.pk-highlights-layout {
    display: flex;
    min-height: 97px;
    align-items: center;
}

.pk-highlights-heading-wrap {
    width: 245px;
    min-width: 245px;
    padding-right: 23px;
}

.pk-highlights-heading {
    color: #090909;
    font-size: 41px;
    line-height: 1.03;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pk-highlights-items {
    display: grid;
    width: calc(100% - 245px);
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

.pk-highlight-item {
    display: flex;
    min-width: 0;
    padding: 0 21px;
    align-items: center;
}

.pk-highlight-icon {
    position: relative;
    display: inline-flex;
    width: 80px;
    height: 80px;
    margin-right: 18px;
    align-items: center;
    justify-content: center;
    flex: 0 0 80px;
    border: 2px solid var(--pk-primary);
    border-radius: 50%;
    color: var(--pk-primary);
    background: rgba(255, 255, 255, 0.32);
    box-shadow:
        inset 0 0 0 5px #f8f2e8,
        inset 0 0 0 6px rgba(149, 16, 23, 0.28);
}

.pk-highlight-icon svg {
    width: 47px;
    height: 47px;
}

.pk-highlight-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    color: #141414;
    line-height: 1.05;
}

.pk-highlight-content br {
    display: none;
}

.pk-highlight-content strong {
    margin-bottom: 10px;
    font-family: var(--pk-heading-font);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pk-highlight-content small {
    font-size: 20px;
    line-height: 1.32;
}

/* =====================================================
   Catering Hero Banner
===================================================== */
.pk-catering-hero {
    position: relative;
    min-height: auto;
    padding: 0;
    overflow: hidden;
    color: #171717;
    background: #f5efe3;
}

.pk-catering-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url("assets/images/catering-hero-bg.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    background-image: url(https://develop.stackblue.com/punjabi-kabab-gyro/wp-content/uploads/2026/08/slide-3-7.jpg);
}


/* Light left-side overlay */
/* .pk-catering-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(251, 247, 237, 0.99) 0%,
            rgba(251, 247, 237, 0.98) 26%,
            rgba(251, 247, 237, 0.93) 38%,
            rgba(251, 247, 237, 0.76) 47%,
            rgba(251, 247, 237, 0.52) 56%,
            rgba(251, 247, 237, 0) 68%);
    width: 85%;
} */

.pk-catering-hero-overlay::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.24;
    background:
        radial-gradient(circle at 9% 28%,
            rgba(133, 78, 38, 0.09),
            transparent 18%),
        radial-gradient(circle at 33% 78%,
            rgba(133, 78, 38, 0.06),
            transparent 21%);
}


/* Main container */
.pk-catering-hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1393px;
    min-height: 555px;
    margin: 0 auto;
    padding: 0 78px;
}

.pk-catering-hero-content {
    position: relative;
    width: 100%;
    max-width: 610px;
}


/* =====================================================
   Halal Badge
===================================================== */
.pk-catering-halal-badge {
    position: absolute;
    top: -18px;
    left: 57px;
    display: flex;
    width: 91px;
    height: 53px;
    padding-top: 3px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(180deg,
            #169154 0%,
            #08713d 100%);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    line-height: 0.82;
    text-align: center;
}

.pk-catering-halal-arabic {
    font-family: Arial, sans-serif;
    font-size: 24px;
    line-height: 0.8;
}

.pk-catering-halal-badge small {
    margin-top: 4px;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =====================================================
   Catering Typography
===================================================== */
.pk-catering-main-heading {
    margin: 0;
    color: #e4e163;
    font-size: 65px;
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(65, 5, 7, 0.17),
        0 1px 1px rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
}

.pk-catering-secondary-heading {
    color: #fff;
    font-family: var(--pk-heading-font);
    font-size: clamp(53px, 5.2vw, 76px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 40px;
}

/* =====================================================
   Decorative Divider
===================================================== */
.pk-catering-divider {
    display: flex;
    width: 100%;
    max-width: 480px;
    margin: 22px auto 17px;
    align-items: center;
    justify-content: left;
    gap: 10px;
    color: var(--pk-primary);
}

.pk-catering-divider-line {
    display: block;
    width: 202px;
    height: 2px;
    background:
        linear-gradient(90deg,
            transparent 0%,
            var(--pk-primary) 23%,
            var(--pk-primary) 100%);
}

.pk-catering-divider-line:last-child {
    background:
        linear-gradient(90deg,
            var(--pk-primary) 0%,
            var(--pk-primary) 77%,
            transparent 100%);
}

.pk-catering-divider svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}


/* =====================================================
   Description
===================================================== */
.pk-catering-description {
    margin: 0 0 20px;
    color: #fff;
    font-family: var(--pk-body-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.36;
}

.pk-catering-description span {
    display: block;
}


/* =====================================================
   Feature List
===================================================== */
.pk-catering-features {
    display: flex;
    margin-bottom: 27px;
    align-items: center;
    gap: 23px;
}

.pk-catering-feature {
    display: flex;
    min-width: 0;
    align-items: center;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.pk-catering-feature-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin-right: 7px;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    color: var(--pk-primary);
}

.pk-catering-feature-icon svg {
    width: 100%;
    height: 100%;
}


/* =====================================================
   Action Buttons
===================================================== */
.pk-catering-actions {
    display: flex;
    align-items: center;
    gap: 29px;
}

.pk-catering-quote-btn,
.pk-catering-call-btn {
    min-height: 61px;
    border-radius: 5px;
    font-family: var(--pk-heading-font);
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.pk-catering-quote-btn {
    width: auto;
    justify-content: space-between;
    min-width: 142px;
    min-height: 31px;
    padding: 10px 15px;
    gap: 4px;
    border-radius: 4px;
    color: #ffffff;
    background: linear-gradient(180deg, #a3151c 0%, #79080e 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 2px rgba(0, 0, 0, 0.18);
    font-family: var(--pk-heading-font);
    line-height: 1;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    letter-spacing: 1px;
}

.pk-catering-quote-btn svg {
    width: 27px;
    height: 23px;
    display: none;
}

.pk-catering-quote-btn:hover {
    color: #ffffff;
    background: #70070c;
}


/* Call button */
.pk-catering-call-btn {
    border: 2px solid var(--pk-primary);
    background: rgba(255, 250, 241, 0.73);
    width: auto;
    min-width: 142px;
    min-height: 31px;
    padding: 4px 15px;
    gap: 4px;
    border-radius: 4px;
    font-family: var(--pk-heading-font);
    line-height: 1;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    animation: 1;
    color: #8a0b12;
}

.pk-catering-call-btn svg {
    width: 31px;
    height: 31px;
}

.pk-catering-call-btn:hover {
    color: #ffffff;
    background: var(--pk-primary);
}

/* =========================================================
   Catering Options Section
========================================================= */
.rp-cater-options-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background: #f2f2f2;
}

/* =========================================================
   Shared Section Headings
========================================================= */

.rp-cater-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    width: 100%;
    margin-top: 0px !important;
    margin-bottom: 25px;
}

.rp-cater-section-heading h2,
.aboutus-details-section h2 {
    margin: 0;
    color: #8c1014;
    font-family: var(--pk-heading-font);
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.1px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(92, 0, 0, 0.15);
}

.rp-cater-heading-decoration {
    display: flex;
    align-items: center;

    width: 142px;
    color: #257540;
}

.rp-cater-heading-decoration>span {
    display: block;
    flex: 1 1 auto;
    height: 2px;

    background:
        linear-gradient(90deg,
            rgba(37, 117, 64, 0) 0%,
            rgba(37, 117, 64, 0.9) 100%);
}

.rp-decoration-right>span {
    background:
        linear-gradient(90deg,
            rgba(37, 117, 64, 0.9) 0%,
            rgba(37, 117, 64, 0) 100%);
}

.rp-cater-heading-decoration svg {
    display: block;
    flex: 0 0 34px;

    width: 34px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.rp-cater-events-grid .rp-cater-event-card:nth-child(3) {
    display: none;
}

/* =========================================================
   Event Cards
========================================================= */

.rp-cater-events-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
    justify-content: center;
    margin-bottom: 0px !important;
}

.rp-cater-events-grid br {
    display: none;
}

.rp-cater-event-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    padding: 19px 10px 15px;
    text-align: center;
    background: linear-gradient(145deg,
            rgba(255, 254, 250, 0.96) 0%,
            rgba(250, 245, 237, 0.96) 100%);
    border: 1px solid #ddccb5;
    border-radius: 10px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55),
        0 2px 6px rgba(91, 58, 27, 0.09);
    transition: transform 0.28s ease,
        box-shadow 0.28s ease;
    width: 100%;
    max-width: 23% !important;
    gap: 15px;
    background: #fff;
    border: 1px solid #eee;
}

.rp-cater-event-card:hover {
    transform: translateY(-4px);

    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.65),
        0 9px 18px rgba(91, 58, 27, 0.14);
}

.rp-cater-event-icon {
    display: flex;
    align-items: center;
    justify-content: space-around;

    width: 74px;
    height: 74px;
    margin-bottom: 10px;

    color: #8e0c11;
}

.rp-cater-event-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.rp-cater-event-card h3 {
    margin: 0;
    color: #171615;
    font-family: var(--pk-body-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

/* =========================================================
   Party Tray Heading
========================================================= */

.rp-party-tray-heading {
    margin-top: 33px;
}

.rp-party-tray-heading h2 {
    font-size: 42px;
}


/* =========================================================
   Party Tray Wrapper
========================================================= */

.rp-party-trays-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    margin-top: 14px;
    overflow: hidden;

    background:
        linear-gradient(100deg,
            rgba(255, 250, 238, 0.98) 0%,
            rgba(255, 253, 245, 0.98) 50%,
            rgba(255, 250, 238, 0.98) 100%);

    border: 1px solid #e6d5b9;
    border-radius: 13px;

    box-shadow:
        inset 0 0 18px rgba(238, 205, 150, 0.08),
        0 2px 7px rgba(89, 57, 27, 0.08);
}


/* =========================================================
   Individual Tray Card
========================================================= */

.rp-party-tray-card {
    position: relative;
    min-width: 0;
    min-height: 457px;
    padding: 16px 37px 20px;
}

.rp-party-tray-card:not(:last-child)::after {
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    content: "";

    border-right: 1px dashed #a6a39e;
}


/* =========================================================
   Green Ribbon Heading
========================================================= */

.rp-party-tray-ribbon {
    position: relative;
    width: 270px;
    height: 41px;
    margin: 0 auto;

    color: #ffffff;
    background:
        linear-gradient(90deg,
            #2a6e31 0%,
            #3b7d3d 48%,
            #236429 100%);

    clip-path:
        polygon(7% 0,
            93% 0,
            86% 50%,
            93% 100%,
            7% 100%,
            14% 50%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.rp-party-tray-ribbon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--pk-body-font);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   Serving Text
========================================================= */

.rp-party-tray-serving {
    margin: 8px 0 0;
    color: #000;
    font-family: var(--pk-body-font);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 35px;
    margin-top: 20px;
}

/* =========================================================
   Tray Image
========================================================= */

.rp-party-tray-image {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 195px;
    margin-top: 5px;
}

.rp-party-tray-image img {
    display: block;
    width: 100%;
    max-width: 390px;
    height: 100%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(0 13px 10px rgba(47, 35, 23, 0.18));

    transition: transform 0.35s ease;
}

.rp-party-tray-card:hover .rp-party-tray-image img {
    transform: translateY(-4px) scale(1.015);
}


/* =========================================================
   Tray Feature List
========================================================= */
.rp-party-tray-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 7px 0 0;
    padding: 0;
    list-style: none;
    justify-content: end;
    align-items: center;
}

.rp-party-tray-list li {
    position: relative;
    padding-left: 38px;
    color: #000;
    font-family: var(--pk-body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.42;
}

.rp-party-tray-list li::before {
    position: absolute;
    top: 0px;
    left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    content: "✓";
    color: #ffffff;
    background-color: #2d7d38;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* =========================================================
   Catering Benefits Section
========================================================= */

.rp-catering-benefits-section {
    position: relative;
    overflow: hidden;
    padding: 24px 0;

    background:
        linear-gradient(90deg,
            #fffdf8 0%,
            #fffefa 50%,
            #fffdf8 100%);
}

.rp-catering-benefits-container {
    width: calc(100% - 92px);
    max-width: 1665px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}


/* =========================================================
   Benefits Box
========================================================= */
.page-id-16 .rp-catering-benefits-box {
    display: none;
}

.rp-catering-benefits-box {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;

    min-height: 194px;
    padding: 22px 24px;

    background:
        radial-gradient(circle at 8% 50%,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(255, 255, 255, 0) 22%),
        radial-gradient(circle at 91% 50%,
            rgba(255, 255, 255, 0.45) 0%,
            rgba(255, 255, 255, 0) 22%),
        linear-gradient(90deg,
            #fff5c8 0%,
            #fff9dc 50%,
            #fff3c1 100%);

    border: 1px solid #f0df9f;
    border-radius: 12px;

    box-shadow:
        inset 0 0 30px rgba(235, 202, 91, 0.08);
}


/* =========================================================
   Individual Benefit Item
========================================================= */

.rp-catering-benefit-item {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    align-items: center;
    column-gap: 18px;

    min-width: 0;
    padding: 0 18px;
}

.rp-catering-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 74px;
    height: 74px;

    color: #225f2e;
}

.rp-catering-benefit-icon svg {
    display: block;
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rp-benefit-icon-filled svg circle {
    fill: #276a34;
    stroke: none;
}

.rp-benefit-icon-filled svg path {
    fill: none;
    stroke: #fff4c8;
    stroke-width: 4;
}

.rp-benefit-tag-icon svg path:first-child {
    fill: #2b6834;
    stroke: #2b6834;
}

.rp-benefit-tag-icon svg circle,
.rp-benefit-tag-icon svg path:last-child {
    stroke: #fff3c7;
}

.rp-catering-benefit-content {
    min-width: 0;
}

.rp-catering-benefit-content h3 {
    margin: 0 0 7px;
    color: #111111;
    font-family: var(--pk-body-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.rp-catering-benefit-content p {
    margin: 0;

    color: #292824;
    font-family: var(--pk-body-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.42;
}


/* =========================================================
   Quote CTA Banner
========================================================= */

.rp-catering-quote-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 110px;
    margin-top: 27px;
    padding: 24px 152px 24px 130px;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 37% 40%,
            rgba(179, 28, 30, 0.24) 0%,
            rgba(179, 28, 30, 0) 35%),
        linear-gradient(90deg,
            #88080c 0%,
            #a20b10 48%,
            #86070b 100%);
    border-radius: 12px;
    box-shadow: inset 0 0 35px rgba(55, 0, 0, 0.18);
}

.rp-catering-quote-content {
    display: flex;
    align-items: center;
    min-width: 0;
}

.rp-catering-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 102px;
    display: none;

    width: 102px;
    height: 102px;
    margin-right: 35px;

    color: #8d1015;
}

.rp-catering-quote-icon svg {
    display: block;
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rp-catering-quote-icon svg circle {
    fill: #fff0a8;
    stroke: none;
}

.rp-catering-quote-icon svg path {
    stroke: #8b1014;
}

.rp-catering-quote-copy h2 {
    margin: 0;
    color: #f8d973;
    font-family: var(--pk-body-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 2px rgba(63, 0, 0, 0.4);
}

.rp-catering-quote-copy p {
    margin: 10px 0 0;
    color: #fff7ef;
    font-family: var(--pk-body-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(44, 0, 0, 0.65);
}

/* =========================================================
   Quote Button
========================================================= */
.rp-catering-quote-button {
    display: inline-flex;
    align-items: center;
    color: #8d1116;
    background: linear-gradient(100deg,
            #f8dc68 0%,
            #ffea7f 50%,
            #f1d150 100%);
    border: 2px solid #a97b0c;
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 4px 10px rgba(50, 0, 0, 0.25);
    transition: transform 0.25s ease,
        filter 0.25s ease;
    width: auto;
    min-width: 142px;
    min-height: 31px;
    padding: 10px 15px;
    gap: 4px;
    border-radius: 4px;
    font-family: var(--pk-heading-font);
    line-height: 1;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    letter-spacing: 1px;
}

.rp-catering-quote-button svg {
    display: block;
    width: 30px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.7;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.25s ease;
}

.rp-catering-quote-button:hover {
    color: #8d1116;
    filter: brightness(1.03);
    transform: translateY(-2px);
}

.rp-catering-quote-button:hover svg {
    transform: translateX(4px);
}


/* =====================================================
   Footer
===================================================== */
.pk-footer-section {
    position: relative;
    padding: 70px 0px;
    padding-bottom: 0px;
    overflow: hidden;
    color: #efefef;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    background: radial-gradient(circle at 10% 20%,
            rgba(255, 255, 255, 0.045),
            transparent 24%),
        radial-gradient(circle at 66% 42%,
            rgba(255, 255, 255, 0.028),
            transparent 20%),
        linear-gradient(105deg,
            #111213 0%,
            #1a1b1c 44%,
            #111213 100%);
}

.pk-footer-section::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.28;
    background-image:
        repeating-linear-gradient(116deg,
            transparent 0,
            transparent 4px,
            rgba(255, 255, 255, 0.012) 5px,
            transparent 6px);
}

.pk-footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 236px;
    grid-template-columns: 22% 13% 18% 27% 20%;
    margin-bottom: 24px;
}


/* =====================================================
   Footer Columns
===================================================== */
.pk-footer-column {
    position: relative;
    min-width: 0;
    padding: 7px 31px 0;
}

.pk-footer-column:not(:last-child)::after {
    position: absolute;
    top: 34px;
    right: 0;
    bottom: 42px;
    width: 2px;
    content: "";
    background: rgba(255, 255, 255, 0.12);
}

.pk-footer-brand-column {
    padding-top: 0;
    padding-left: 0;
}

.pk-footer-payment-column {
    padding-right: 0;
    padding-left: 47px;
}

.pk-footer-column h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: var(--pk-heading-font);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 35px;
    margin-bottom: 15px;
}

.pk-footer-column h3::before {
    height: 3px;
    width: 100%;
    position: absolute;
    content: '';
    background-color: #eee52f;
    max-width: 11%;
    bottom: 18px;
}

/* =====================================================
   Footer Logo
===================================================== */
.pk-footer-logo {
    display: block;
    width: 275px;
    padding: 9px;
    margin-bottom: 1px !important;
    outline: unset;
    outline-offset: -6px;
    background: #fff;
    outline: 2px solid #980f16;
    background: transparent;
    outline: 0px;
}

.pk-footer-logo img {
    width: 100%;
    height: 100%;
}


/* =====================================================
   Social Links
===================================================== */
.pk-footer-socials {
    display: flex;
    margin: 1px 0 14px;
    align-items: center;
    gap: 16px;
    justify-content: center;
    MARGIN-TOP: 15px;
}

.pk-social-link {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    border-radius: 50%;
    color: #ffffff;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.55);
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.pk-social-link:hover {
    color: #ffffff;
    opacity: 0.9;
    transform: translateY(-2px);
}

.pk-footer-copyright {
    margin: 0;
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
}


/* =====================================================
   Quick Links
===================================================== */
.pk-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pk-footer-links li {
    margin-bottom: 35px;
}

.pk-footer-links a {
    color: #eeeeee;
    font-size: 16px;
    line-height: 1.22;
    transition: color 0.2s ease;
    color: #fff;
}

.pk-footer-links a:hover {
    color: var(--pk-yellow);
}


/* =====================================================
   Hours
===================================================== */
.pk-footer-hours-block > p:nth-of-type(2) {
    border-bottom: 0px;
}
p.pk-footer-open-days {
    border-bottom: 0px;
}
.pk-footer-hours-block > p:nth-of-type(2) {
    border-bottom: 0px !important;
}
.delivery-title {
    margin: 0 0 12px;
    color: #eee52f;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
    font-family: var(--pk-heading-font);
}

.delivery-heading {
    margin-bottom: 6px;
}
.pk-footer-hours-block p {
    margin: 0 0 9px;
    color: #eee52f !important;
    background: transparent;
    width: max-content;
    font-weight: 600;
    margin-inline: auto;
    font-size: 16px !important;
    padding: 20px 15px;
    margin-bottom: 0px;
    border-bottom: 1px dashed #ffffff5c;
    margin-top: 0px !important;
}
.pk-footer-hours-block p:last-child{
    background-color: red;
}

.pk-footer-hours-block strong,
.pk-footer-hours-block span {
    display: block;
    font-size: 16px;
    line-height: 1.35;
}

.pk-footer-hours-block strong {
    font-weight: 500;
}

.pk-footer-hours-block .pk-footer-open-days {
    margin-top: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}


/* =====================================================
   Contact
===================================================== */
.pk-footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pk-footer-contact-list li {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.pk-footer-contact-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    margin-right: 17px;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    color: var(--pk-yellow);
}

.pk-footer-contact-icon svg {
    width: 28px;
    height: 28px;
}

.pk-footer-location-icon svg {
    width: 26px;
    height: 34px;
}

.pk-footer-contact-list a,
.pk-footer-contact-list address {
    margin: 0;
    color: #eeeeee;
    font-size: 16px;
    font-style: normal;
    line-height: 1.28;
}

.pk-footer-contact-list a:hover {
    color: var(--pk-yellow);
}


/* =====================================================
   Payments
===================================================== */
.pk-footer-payment-title {
    margin: 0 0 22px;
    color: var(--pk-yellow);
    font-family: var(--pk-heading-font);
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pk-payment-cards {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pk-payment-card {
    position: relative;
    display: inline-flex;
    width: 82px;
    height: 55px;
    padding: 5px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex: 0 0 82px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.38);
}


/* Visa */
.pk-payment-visa {
    color: #1261a0;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
}


/* Mastercard */
.pk-payment-mastercard {
    background: #162e61;
}

.pk-mastercard-circle {
    position: absolute;
    top: 9px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.pk-mastercard-left {
    left: 15px;
    background: #eb2026;
}

.pk-mastercard-right {
    right: 15px;
    background: #f89e1b;
    opacity: 0.92;
}


/* American Express */
.pk-payment-amex {
    flex-direction: column;
    color: #ffffff;
    background: #2f89bc;
    font-family: Arial, sans-serif;
    line-height: 0.88;
    text-transform: uppercase;
}

.pk-payment-amex small {
    font-size: 9px;
    font-weight: 700;
}

.pk-payment-amex strong {
    font-size: 12px;
    font-weight: 800;
}


/* Discover */
.pk-payment-discover {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #161616;
    background: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.pk-payment-discover strong {
    position: relative;
    z-index: 2;
}

.pk-payment-discover i {
    position: absolute;
    right: -10px;
    bottom: -14px;
    width: 72px;
    height: 30px;
    background: #f58220;
    transform: rotate(-15deg);
}


/* Policies */
.pk-footer-policy-links {
    display: flex;
    margin-top: 35px;
    align-items: center;
    gap: 17px;
}

.pk-footer-policy-links a {
    color: #dedede;
    font-size: 16px;
    white-space: nowrap;
}

.pk-footer-policy-links a:hover {
    color: var(--pk-yellow);
}

.pk-footer-policy-links span {
    display: block;
    width: 2px;
    height: 24px;
    background: rgba(255, 255, 255, 0.36);
}


/* =========================================================
   Contact Details Section
========================================================= */

.pk-contact-hero-bg {
    min-height: auto !important;
}

.pk-contact-hero-bg .pk-hero-visual {
    bottom: 0;
    height: 100%;
}

.pk-contact-hero-text {
    font-size: 20px;
    width: 100%;
    max-width: 590px !important;
    display: none;
}

.aboutus-details-section p {
    margin-bottom: 15px;
}

.rp-contact-details-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%,
            rgba(227, 193, 151, 0.08) 0%,
            rgba(227, 193, 151, 0) 30%),
        radial-gradient(circle at 88% 76%,
            rgba(227, 193, 151, 0.07) 0%,
            rgba(227, 193, 151, 0) 30%),
        linear-gradient(90deg,
            #fcf8f3 0%,
            #fffdfa 50%,
            #fcf8f3 100%);
    padding: 70px 0px;

}



.rp-contact-details-container {
    width: calc(100% - 108px);
    max-width: 1151px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}


/* =========================================================
   Shared Card Styling
========================================================= */

.rp-contact-info-card,
.rp-contact-map-card,
.rp-contact-form-card {
    background-color: rgba(255, 255, 255, 0.82);
    border: 1px solid #eee7df;
    border-radius: 12px;

    box-shadow:
        0 2px 8px rgba(87, 56, 28, 0.07);
}

.rp-contact-info-card .rp-contact-icon-box {
    color: #930c13;
    margin-bottom: 0px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e4e163;
    border-radius: 0px;
}

.rp-contact-info-card .rp-contact-icon-box i {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.2px;
    text-align: center;
}

.rp-contact-card-heading {
    margin: 0;

    color: #99131a;
    /* font-family: var(--pk-body-font); */
    font-size: 29px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.2px;

    text-shadow:
        0 1px 0 rgba(86, 0, 0, 0.12);
}


/* =========================================================
   Desktop Grid Proportions
========================================================= */

.rp-contact-top-row {
    align-items: stretch;
    gap: 12px;
}

.rp-contact-bottom-row {
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
}

.rp-contact-info-column,
.rp-contact-map-column,
.rp-contact-talk-column,
.rp-contact-form-column {
    min-width: 0;
}

.contact-form {
    position: relative;
    background: whitesmoke;
}

.contact-form .first-row {
    border: 1px solid #eee;
    align-items: center;
    border-radius: 0px;
    padding: 3.5rem 3rem;
    animation: fadeUp 0.7s 0.35s ease both;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding-bottom: 15px;
}

.page-id-16 .contact-form .first-row.catering-request {
    padding: 40px;
    border-radius: 0px;
    background: #fff;
    border: 5px solid #aa080f;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    outline: 8px solid #aa080f5c;
}

.contact-form .first-row .rp-contact-form {
    border-radius: 0;
    padding: 30px;
    height: 100%;
    margin-inline: auto;
}


.contact-form .first-row.catering-request .rp-contact-form {
    gap: 18px;
}

.contact-form .first-row .contact-img-bx {
    aspect-ratio: 1.5/1;
}

.contact-form .first-row .contact-img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   Contact Information Card
========================================================= */

.rp-contact-info-card {
    /* height: 451px; */
    padding: 24px;
}

.rp-contact-info-card .rp-contact-card-heading {
    margin-bottom: 23px;
}

.rp-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.rp-contact-info-item {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 15px;
}

.rp-contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;

    color: #af171d;
}

.rp-contact-info-icon svg {
    display: block;
    width: 100%;
    height: 100%;

    overflow: visible;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rp-contact-info-content {
    min-width: 0;
}

.rp-contact-info-content h3 {
    margin: 0 0 3px;

    color: #aa181e;
    font-family: var(--rp-body-font, "Roboto Condensed", Arial, sans-serif);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.rp-contact-info-content p {
    margin: 0;

    color: #1f1d1b;
    font-family: var(--rp-body-font, "Roboto Condensed", Arial, sans-serif);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.48;
}

.rp-contact-info-content a {
    color: inherit;
    text-decoration: none;

    transition: color 0.2s ease;
}

.rp-contact-info-content a:hover {
    color: #a41319;
}


/* =========================================================
   Delivery Logos
========================================================= */

.rp-contact-delivery-item {
    align-items: center;
}

.rp-contact-delivery-icon {
    width: 42px;
    height: 36px;
    margin-left: -2px;
}

.rp-contact-delivery-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.rp-contact-uber-logo {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 78px;
    height: 28px;
    padding: 2px 7px;
    color: #ffffff;
    background-color: #090b0a;
    border-radius: 2px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.35);
    font-family: Arial, sans-serif;
    line-height: 0.78;
    text-decoration: none;
}

.rp-contact-uber-logo span {
    font-size: 13px;
    font-weight: 500;
}

.rp-contact-uber-logo strong {
    color: #4ec250;
    font-size: 14px;
    font-weight: 700;
}

.rp-contact-grubhub-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 80px;
    height: 27px;
    padding: 0 7px;

    color: #ffffff;
    background:
        linear-gradient(180deg,
            #ed3b3d 0%,
            #c7181d 100%);

    border: 1px solid #bd1117;
    border-radius: 3px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.25);

    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}


/* =========================================================
   Static Map
========================================================= */

.rp-contact-map-card {
    display: block;
    /* height: 451px; */
    padding: 10px;
    overflow: hidden;
}

.rp-contact-map-card img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 4px;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.rp-contact-map-card:hover img {
    filter: brightness(1.015);
    transform: scale(1.008);
}


/* =========================================================
   Prefer to Talk Card
========================================================= */

.rp-contact-talk-card {
    display: grid;
    grid-template-rows: 208px 166px;

    width: 100%;
    height: 374px;
    overflow: hidden;

    background-color: #1d0803;
    border: 1px solid rgba(59, 21, 10, 0.38);
    border-radius: 8px;

    box-shadow:
        0 2px 6px rgba(56, 27, 8, 0.11);
}

.rp-contact-talk-image {
    position: relative;
    overflow: hidden;
}

.rp-contact-talk-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.45s ease;
}

.rp-contact-talk-card:hover .rp-contact-talk-image img {
    transform: scale(1.025);
}

.rp-contact-talk-body {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    column-gap: 20px;

    padding: 22px 26px;

    background:
        radial-gradient(circle at 72% 40%,
            rgba(115, 34, 13, 0.25) 0%,
            rgba(115, 34, 13, 0) 48%),
        linear-gradient(110deg,
            #351107 0%,
            #200902 53%,
            #130502 100%);
}

.rp-contact-talk-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    color: #ffffff;
    border: 1px solid #b82729;
    border-radius: 6px;
}

.rp-contact-talk-icon svg {
    display: block;
    width: 47px;
    height: 47px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}

.rp-contact-talk-content {
    min-width: 0;
}

.rp-contact-talk-content h2 {
    margin: 0 0 6px;

    color: #e1aa27;
    font-family: var(--rp-heading-font, "DM Serif Display", Georgia, serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.1;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8);
}

.rp-contact-talk-content p {
    margin: 0;

    color: #ffffff;
    font-family: var(--rp-body-font, "Roboto Condensed", Arial, sans-serif);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.5;
}

.rp-contact-talk-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;

    color: #ffffff;
    font-family: var(--rp-heading-font, "DM Serif Display", Georgia, serif);
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.rp-contact-talk-numbers a {
    color: inherit;
    text-decoration: none;
}

.rp-contact-talk-numbers a:hover {
    color: #e4ad2c;
}

.rp-contact-talk-numbers span {
    color: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   Contact Form Card
========================================================= */

.rp-contact-form-card {
    height: 384px;
    padding: 14px 24px 16px;
}

.rp-contact-form-heading {
    margin-bottom: 12px;
}

.rp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rp-contact-form-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rp-contact-form-field {
    position: relative;
    min-width: 0;
}

.rp-contact-form-field input,
.rp-contact-form-field select,
.rp-contact-form-field textarea {
    display: block;
    width: 100%;
    color: #32302e;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #fffefe 100%);
    border: 1px solid #e5dbd2;
    border-radius: 4px;
    outline: none;
    box-shadow:
        inset 0 1px 2px rgba(55, 35, 18, 0.025);
    font-family: var(--rp-body-font, "Roboto Condensed", Arial, sans-serif);
    font-size: 16px;
    font-weight: 400;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rp-contact-form-field input,
.rp-contact-form-field select {
    /* height: 43px; */
    padding: 14px;
}

.rp-contact-form-field textarea {
    height: 100px;
    padding: 13px 14px;
    resize: none;
}

.rp-contact-form-field input::placeholder,
.rp-contact-form-field textarea::placeholder {
    color: #6f6b68;
    opacity: 1;
}

.rp-contact-form-field input:focus,
.rp-contact-form-field select:focus,
.rp-contact-form-field textarea:focus {
    border-color: #bd3539;

    box-shadow:
        0 0 0 3px rgba(175, 23, 29, 0.09);
}


/* Subject Select */
.rp-contact-form-field select {
    padding-right: 42px;
    appearance: none;
    cursor: pointer;
}

.rp-contact-select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;

    width: 11px;
    height: 8px;

    pointer-events: none;
    transform: translateY(-50%);

    fill: none;
    stroke: #63605d;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   Send Message Button
========================================================= */

.rp-contact-submit-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 0 50px;
    color: #ffffff;
    background:
        linear-gradient(180deg,
            #b91118 0%,
            #ab080f 52%,
            #99070d 100%);
    border: 1px solid #8c060b;
    border-radius: 4px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(80, 0, 4, 0.16);
    font-family: var(--rp-body-font, "Roboto Condensed", Arial, sans-serif);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    transition:
        filter 0.25s ease,
        transform 0.25s ease;
}

.rp-contact-submit-button svg {
    position: absolute;
    top: 50%;
    right: 17px;

    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

.rp-contact-submit-button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.rp-contact-submit-button:hover svg {
    transform: translate(3px, -50%);
}

/* gallary section css starts here */

.gallery-section.common-section-padding {
    padding-top: 85px;
    padding-bottom: 55px;
}

.gallery-section .rp-gallery-grid .rp-gallery-item {
    aspect-ratio: 1.2/1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gallery-section .rp-gallery-grid .rp-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-section .rp-gallery-grid .rp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* gallary section css ends here */

/* about section css starts here */
.pk-about-hero-bg {
    background-color: var(--pk-dark-soft);
}

/* 
.aboutus-details-section .banner-about-img {
    border-radius: 18px;
    aspect-ratio: 1.6/1;
    object-fit: cover;
} */

.banner-about-img img {
    width: 100% !important;
    max-width: 600px;
}

.pk-about-hero-bg .pk-contact-hero-text {
    font-size: 20px;
}

.aboutus-details-section .pk-about-story-heading {
    color: #0D6135;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: capitalize;
}

/* about section css ends here */



/* =========================================================
   Testimonials Section
========================================================= */

.rp-testimonials-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 15%,
            rgba(234, 202, 161, 0.1) 0%,
            rgba(234, 202, 161, 0) 28%),
        radial-gradient(circle at 90% 80%,
            rgba(234, 202, 161, 0.08) 0%,
            rgba(234, 202, 161, 0) 30%),
        linear-gradient(90deg,
            #fdf9f4 0%,
            #fffdf9 50%,
            #fdf9f4 100%);
}


/* =========================================================
   Review Grid
========================================================= */

.rp-review-grid {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;

    margin-top: 24px;
}


/* =========================================================
   Review Card
========================================================= */

.rp-review-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    padding: 27px 35px 28px;

    background:
        linear-gradient(145deg,
            rgba(255, 254, 251, 0.98) 0%,
            rgba(252, 248, 242, 0.98) 100%);

    border: 1px solid #dfcfb7;
    border-radius: 16px;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.55),
        0 2px 8px rgba(85, 51, 23, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.rp-review-card:hover {
    transform: translateY(-4px);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.7),
        0 10px 24px rgba(85, 51, 23, 0.1);
}


/* =========================================================
   Card Header
========================================================= */

.rp-review-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.rp-review-profile {
    display: flex;
    align-items: center;
    min-width: 0;
}

.rp-review-avatar {
    flex: 0 0 94px;

    width: 94px;
    height: 94px;
    overflow: hidden;

    background-color: #ded8ce;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;

    box-shadow:
        0 2px 6px rgba(45, 29, 14, 0.18);
}

.rp-review-avatar img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.rp-review-profile-content {
    min-width: 0;
    /* margin-left: 21px; */
}

.rp-review-name {
    margin: 0 0 8px;
    color: #111111;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.05;
    white-space: nowrap;
    font-family: "Bebas Neue", sans-serif;
}

.rp-review-time {
    margin-top: 12px;

    color: #55514d;
    font-family: var(--rp-body-font, "Roboto Condensed", Arial, sans-serif);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}


/* =========================================================
   Stars
========================================================= */

.rp-review-stars {
    display: flex;
    align-items: center;
    gap: 4px;

    color: #e9a21c;
    line-height: 1;
}

.rp-review-stars span {
    display: block;

    font-family: Arial, sans-serif;
    font-size: 31px;
    line-height: 1;

    text-shadow:
        0 1px 0 rgba(131, 78, 0, 0.12);
}


/* =========================================================
   Review Text
========================================================= */

.rp-review-text {
    margin: 23px 0 0;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 0px;
}

.pk_footer_copyright-block {
    gap: 5px !important;
    text-transform: capitalize;
}

.privacy-policy-section {
    padding: 35px 0px;
}

.privacy-policy-section h1,
.privacy-policy-section h2,
.privacy-policy-section h3,
.privacy-policy-section h4,
.privacy-policy-section h5,
.privacy-policy-section h6 {
    background-color: #830a1014;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    border-left: 5px solid #da0a13;
    padding-top: 12px;
    margin: 15px 0px;
    color: #000;
}

.footer-end-link {
    color: #eee52f;
}

/* ==========================
   Block Theme Bridge
========================== */

/* Flatten Gutenberg wrappers that break Bootstrap / design layout */
.wp-block-group.pk-header,
.wp-block-group.pk-footer-section,
.wp-block-group.pk-hero-section,
.wp-block-group.pk-order-process-section,
.wp-block-group.pk-menu-section,
.wp-block-group.pk-today-specials-section,
.wp-block-group.pk-highlights-section,
.wp-block-group.pk-catering-hero,
.wp-block-group.rp-cater-options-section,
.wp-block-group.rp-catering-benefits-section,
.wp-block-group.gallery-section,
.wp-block-group.rp-testimonials-section,
.wp-block-group.rp-contact-details-section,
.wp-block-group.aboutus-details-section,
.wp-block-group.page-hero,
.wp-block-group.about-intro,
.wp-block-group.testimonials {
    max-width: none;
}

.entry-content .wp-block-group.row,
.wp-block-post-content .wp-block-group.row,
main .wp-block-group.row {
    display: flex;
    flex-wrap: wrap;
}

.rp-contact-form-card #contact-form .form-control,
.rp-contact-form-card #catering-form .form-control,
.pk-catering-request-section .form-control,
.rp-contact-form-shell .form-control,
.contact-form .form-control:not(.rp-contact-form-field .form-control),
.rp-contact-details-section .form-control:not(.rp-contact-form-field .form-control) {
    width: 100%;
    border: 1px solid #e5dbd2;
    border-radius: 4px;
    background: linear-gradient(180deg, #ffffff 0%, #fffefe 100%);
    box-shadow: inset 0 1px 2px rgba(55, 35, 18, 0.025);
    padding: 14px 16px;
    font-family: var(--rp-body-font);
    font-size: 16px;
    color: #000;
    border: 1px solid #0000002e;
    border-radius: 0px;
}

#catering-event .row.form-row {
    row-gap: 14px;
}

.rp-gallery-grid .size-full {
    aspect-ratio: 1.2 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 11px;
    margin-bottom: 20px;
}

.rp-gallery-grid .size-full img {
    height: 100%;
    object-fit: cover;
}

/* Contact Us shortcode uses design .rp-contact-form-field shell — do not override */
.rp-contact-details-section .rp-contact-form-field .form-control,
.contact-form .rp-contact-form-field .form-control {
    width: 100%;
    border: 1px solid #e5dbd2;
    border-radius: 4px;
    background: linear-gradient(180deg, #ffffff 0%, #fffefe 100%);
    box-shadow: inset 0 1px 2px rgba(55, 35, 18, 0.025);
    padding: 14px 16px;
    font-family: var(--rp-body-font, "Roboto Condensed", Arial, sans-serif);
    font-size: 16px;
    color: #32302e;
}

.rp-contact-details-section .rp-contact-form-field textarea.form-control,
.contact-form .rp-contact-form-field textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.rp-contact-details-section .btn-blue,
.pk-catering-request-section .btn-blue,
.rp-contact-form-shell .btn-blue,
.contact-form .btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 32px;
    border: 0;
    border-radius: 0;
    background: var(--pk-primary);
    color: var(--pk-white);
    font-family: var(--pk-heading-font);
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: auto;
    justify-content: space-between;
    min-width: 142px;
    min-height: 31px;
    padding: 10px 15px;
    gap: 4px;
    border-radius: 4px;
    color: #ffffff;
    background: linear-gradient(180deg, #a3151c 0%, #79080e 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 2px rgba(0, 0, 0, 0.18);
    font-family: var(--pk-heading-font);
    line-height: 1;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    letter-spacing: 1px;
}

.rp-contact-details-section .btn-blue:hover,
.pk-catering-request-section .btn-blue:hover,
.rp-contact-form-shell .btn-blue:hover,
.contact-form .btn-blue:hover {
    background: var(--pk-primary-dark);
    color: var(--pk-white);
}

input:focus {
    outline: none;
    outline: 0px;
}

.rp-contact-details-section .error,
.pk-catering-request-section .error,
.contact-form .error {
    color: var(--pk-primary);
    font-size: 13px;
    background: red;
    color: #fff;
    display: block;
    font-size: 15px;
    padding: 0px 5px;
}

/* Hide WP skip link visual clutter without removing a11y */
.wp-site-blocks>.skip-link {
    position: absolute;
    left: -9999px;
}

/* =====================================================
   Header — Gutenberg Navigation Bridge
===================================================== */
.pk-header .pk-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 10px;
    min-height: 124px;
}

.pk-header .pk-header-container.is-layout-flex {
    gap: 16px;
}

.pk-header .pk-brand-space {
    flex: 0 0 auto;
}

.pk-header .pk-brand-space img {
    display: block;
    width: 100%;
    height: auto;
}

.pk-header .wp-block-navigation.pk-main-menu,
.pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: clamp(38px, 4vw, 76px);
    flex-wrap: nowrap;
}

.pk-header .wp-block-navigation.pk-main-menu {
    justify-content: center;
}

.pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation-item {
    margin: 0;
}

.pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation-item__content {
    position: relative;
    padding: 17px 0 !important;
    color: #080808;
    font-family: var(--pk-heading-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    background: transparent;
    transition: color 0.25s ease;
}

.pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation-item__content::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    margin: auto;
    content: "";
    background: var(--pk-primary);
    transition: width 0.25s ease;
}

.pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation-item__content:hover,
.pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation-item__content:focus,
.pk-header .wp-block-navigation.pk-main-menu .current-menu-item>.wp-block-navigation-item__content,
.pk-header .wp-block-navigation.pk-main-menu .current-menu-item .wp-block-navigation-item__content {
    color: var(--pk-primary);
}

.pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation-item__content:hover::after,
.pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation-item__content:focus::after,
.pk-header .wp-block-navigation.pk-main-menu .current-menu-item>.wp-block-navigation-item__content::after,
.pk-header .wp-block-navigation.pk-main-menu .current-menu-item .wp-block-navigation-item__content::after {
    width: 100%;
}

.pk-header .pk-header-actions {
    flex: 0 0 auto;
    margin-left: 0;
}

.pk-header .wp-block-navigation__responsive-container-open {
    display: none;
    width: 48px;
    height: 44px;
    padding: 9px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 2px solid var(--pk-primary);
    border-radius: 4px;
    background: transparent;
    box-shadow: none !important;
    color: var(--pk-primary);
}

.pk-header .wp-block-navigation__responsive-container-open svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.pk-header .wp-block-navigation__responsive-container-close {
    color: var(--pk-dark);
}

.pk-header .wp-block-navigation__responsive-container.is-menu-open {
    background: var(--pk-header-bg);
    padding: 24px 20px 40px;
}

.pk-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding-top: 24px;
}

.pk-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    font-size: 28px;
    padding: 14px 0 !important;
}

.inred_bx {
    margin-top: 0 !important;
}

.chick_bx {
    margin-top: 16px !important;
}

@media (max-width: 1199.98px) {
    .pk-header .pk-header-container {
        min-height: 108px;
        padding: 9px 20px;
        flex-wrap: wrap;
    }

    .pk-header .wp-block-navigation.pk-main-menu {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
    }

    .pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation__container {
        display: none;
    }

    .pk-header .wp-block-navigation__responsive-container-open {
        display: inline-flex;
    }

    .pk-header .pk-header-actions {
        order: 3;
        width: 100%;
        margin: 12px 0 0;
    }

    .pk-header .pk-header-actions .pk-order-btn {
        width: 100%;
    }

    .pk-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .pk-header .pk-header-container {
        padding: 8px 16px;
    }

    .pk-header .pk-brand-space {
        width: 120px;
        min-width: 120px;
        margin-right: 12px;
    }
}

@media (max-width: 1366px) {
    .pk-specials-left>.row>.col-lg-4:nth-child(2) .image-card img {
        max-width: 294px;
    }

    .pk-order-phone {
        margin-right: 6px;
    }

    .pk-order-steps-panel {
        padding: 13px 18px 13px 5px;
    }

    .pk-special-food-image {
        width: 67%;
    }

    .pk-brand-space {
        width: 174px;
        min-width: 174px;
    }

    .rp-catering-benefit-item {
        grid-template-columns: 100% !important
    }
}





.pk-hero-section {
    position: relative;
    overflow: hidden;
}

.pk-hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    height: calc(100vh - 124px);
}

/* 
.pk-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
} */

.pk-hero-inner {
    position: relative;
    z-index: 2;
}

.page-id-14 .pk-today-specials-section {
    display: none;
}

.page-id-14 .pk-highlights-section {
    display: none;
}

.page-id-12 section#home {
    background-image: url(https://develop.stackblue.com/punjabi-kabab-gyro/wp-content/uploads/2026/08/slide-5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.page-id-22 #home {

    background-image: url(https://develop.stackblue.com/punjabi-kabab-gyro/wp-content/uploads/2026/08/contact-us-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}


.slick-header {
    padding: 60px 0px;
    text-align: center;
    background: #0a0b0c;
}

.slick-header .common-section-heading {
    color: #fff;
    font-size: 65px;
    margin: 10px 0px;
}

.slick-header .pk-contact-hero-text {
    color: #fff;
}

.phone-bar {
    display: none;
}

.pk-highlights-heading {
    text-align: center;
}

.Block-Root {
    display: flex;
    justify-content: space-between;
}


.new-step-block {
    background: var(--pk-primary);
    padding: 8px 0px;
}

.new-step-block .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1861px !important;
}

.new-step-block .main-grid-block {
    display: flex;
    align-items: center;
    gap: 19px;
}

.new-step-block .main-grid-block:hover.firs-icon {
    transform: skewX(-1);
}

.new-step-block .firs-icon {
    transition: transform 0.4s ease;
}

.new-step-block .main-grid-block:hover .firs-icon {
    transform: scaleX(-1);
}


.new-step-block .main-grid-block span {
    gap: 22px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.new-step-block .firs-icon img {
    width: 100%;
    max-width: 60px;
}

.new-step-block .step-block b {
    background: #e0dd62;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 100px;
    color: transparent;
    -webkit-text-stroke: 2px #951017;
    font-family: monospace;
}

.new-step-block .step-block {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.step-block:nth-child(2) {
    position: relative;
}

.step-block:nth-child(2)::before {
    height: 100%;
    width: 1px;
    background: #d9d9d947;
    position: absolute;
    content: '';
    left: -136px;
}

.step-block:nth-child(3) {
    position: relative;
}



.step-block:nth-child(3)::before {
    height: 100%;
    width: 1px;
    background: #d9d9d947;
    position: absolute;
    content: '';
    left: -136px;
}

.step-block:nth-child(4) {
    position: relative;
}


.step-block:nth-child(4)::before {
    height: 100%;
    width: 1px;
    background: #d9d9d947;
    position: absolute;
    content: '';
    left: -136px;
}


@media (max-width: 1366.98px) {
    .pk-order-steps-panel {
        gap: 2rem;
    }

    .pk-order-step-list {
        gap: 7rem;
    }
}

/* 
.pk-order-steps-panel {
    display: flex;
    padding: 13px 27px;
    align-items: center;
    color: var(--pk-white);
    background: linear-gradient(90deg,
            #78080d 0%,
            var(--pk-primary) 55%,
            #8d0d13 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 2px 4px rgba(0, 0, 0, 0.08);
    justify-content: space-between;
    gap: 2rem;
    padding-top: 0px;
    padding-bottom: 0px;
} */
.event-item img {
    width: 100%;
    max-width: 57px;
}

.page-id-16 #party-trays {
    background-image: url(https://develop.stackblue.com/punjabi-kabab-gyro/wp-content/uploads/2026/08/slide-3-8-1.jpg);
    background-size: cover;
    background-position: right;
}

.page-id-16 .pk-catering-hero-bg {
    background-image: unset;
}

.page-id-18 .pk-contact-hero-text {
    margin-inline: auto;
}

.home .pk-hero-section .pk-hero-container {
    padding: 180px 16px 150px !important;
}

.limit-box {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    text-transform: capitalize;
}

.about-root {
    /* background: radial-gradient(circle at 15% 12%, rgba(146, 96, 42, 0.06), transparent 21%), radial-gradient(circle at 84% 42%, rgba(146, 96, 42, 0.05), transparent 20%), #f7f2e8; */
    padding: 70px 0px;
}

.about-root .about-grid {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-root .pk-contacthero-eyebrow {
    margin-bottom: 16px;
    margin-top: 0px !important;
    color: #82090f;
    font-size: 45px;
}

.about-root .last-text p {
    border-top: 1px solid #00000057;
    padding-top: 15px;
    margin-top: 12px !important;
}

.about-root .grid-col p {
    margin-block: 22px;
}

.about-root .grid-col img {
    /* height: 450px; */
    width: 100%;
    object-fit: cover;
}

.parallax-section {
    min-height: 570px;
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    animation: 30s linear 0s infinite normal none running bg-marquee;
    padding: 70px 0px;
}

.size2 img {
    max-width: 300px;
}

.size1 img {
    max-width: 269px;
}

.size3 img {
    max-width: 300px;
}

@keyframes bg-marquee {
    0% {
        background-position: 0;
    }

    100% {
        background-position: -1190px;
    }
}

.parallax-section .text-block p {
    color: #000;
    margin-bottom: 15px;
}

.parallax-section .text-block {
    width: 100%;
    max-width: 595px;
    background: #fff;
    padding: 30px;
    margin-left: auto;
}

.pk-about-story-heading {
    color: #026c02;
    margin-bottom: 15px;
}

.parallax-section .pk-contacthero-title {
    color: #7f090f;
}

/* 
section{
    padding: 70px 0px !important;
} */

.pk-today-specials-section .pk-specials-heading {
    text-align: center;
    margin-bottom: 25px;
}

.Why-Order {
    display: none;
}

.new-review-section {
    padding: 70px 0px;
}

.new-review-section .common-section-heading {
    margin: 0 0 9px 9px;
    color: var(--pk-primary);
    font-family: var(--pk-heading-font);
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-align: center;
}

.new-review-section .main-grid-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-block: 45px;
    gap: 25px;
}

.new-review-section .main-grid-block .review-bx:last-child {
    display: none;
}

.new-review-section .main-grid-block .review-bx:nth-last-child(2) {
    position: relative;
}

/* 
.new-review-section .main-grid-block .review-bx:nth-last-child(2)::before {
    height: 100%;
    width: 1px;
    background: #d9d9d9;
    position: absolute;
    content: '';
    left: -40px;
} */

.new-review-section .main-grid-block .review-bx:nth-last-child(3) {

    position: relative;
}

.new-review-section .review-bx {
    border: 1px solid #d9d9d9;
    padding: 20px;
    background: #fff;
    background: #fbfbfb;
}

/* .new-review-section .main-grid-block .review-bx:nth-last-child(3)::before {
    height: 100%;
    width: 1px;
    background: #d9d9d9;
    position: absolute;
    content: '';
    left: -40px;
} */

/* .new-review-section .main-grid-block .review-bx:nth-last-child(2)::after {
    height: 100%;
    width: 1px;
    background: #d9d9d9;
    position: absolute;
    content: '';
    top: 0;
    right: -40px;
} */

.new-review-section .btn-block {
    text-align: center;
}


.new-review-section .card-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d9d9d9;
    padding-right: 10px;
}

.new-review-section .card-head img {
    height: 45px;
    width: 45px;
    background: #fff;
    padding: 6px;
    border: 1px solid #eee;
    object-fit: contain;
}

.new-review-section .card-btm p {
    margin-bottom: 15px;
    color: #000;
}

.new-review-section .card-btm h2 {
    font-size: 25px;
    color: #951017;
}

.site-map-block .container-fluid {
    padding: 0px;
}

.site-map-block {
    line-height: 0px;
}

.site-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.site-tag {
    right: 12px;
    bottom: 13px;
    width: 144px;
}

.site-tag img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    /* animation: siteTagZoom 5s ease-in-out infinite; */
    animation: siteTagFade 3s ease-in-out infinite;
    transform-origin: center;
}

/* @keyframes siteTagZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
} */

@keyframes siteTagFade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.site-map-block .map-rrot iframe {
    width: 100%;
    line-height: 0px;
    height: 250px;
}

.site-tag {
    position: fixed;
    z-index: 9999;
}

.site-tag img {
    display: block;
    width: 100%;
    height: auto;
    animation: siteTagFade 3s ease-in-out infinite;
    transform-origin: center;
}

p.pk-footer-open-days {
    border-bottom: 0px !important;
}

.new-so-block .block-title h5 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: var(--pk-heading-font);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
    margin-top: 28px !important;
    padding-bottom: 5px;
}

.icon-root a img {
    width: 42px;
}

.icon-root a:first-child img {
    max-width: 39px;
}

.new-so-block br {
    display: none;
}

.new-so-block p a img {
    width: 100%;
    max-width: 42px;

}

.new-so-block p a:first-child img {
    max-width: 39px;
}


.new-so-block p a img {
    width: 100%;
    max-width: 42px;
}

.new-so-block p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-end p {
    margin-bottom: 0px;
    text-align: center;
    font-size: 16px;
    padding: 10px 0px;
    text-transform: capitalize;
    background: linear-gradient(180deg, #9f1118 0%, #7d080e 100%);
    margin-top: 40px;
}

.footer-end p a {
    color: #fff;
}

.wp-block-group.row>.col-md-4:nth-child(2) .pk-footer-brand-column {
    position: relative;
    left: -31px;
}

.wp-block-group.row>.col-md-4:nth-child(2) .pk-footer-brand-column::before {
    height: 100%;
    width: 1px;
    background-color: #ffffff29;
    position: absolute;
    content: '';
    left: -89px;
}

.wp-block-group.row>.col-md-4:nth-child(2) .pk-footer-brand-column::after {
    height: 100%;
    width: 1px;
    background-color: #ffffff29;
    position: absolute;
    content: '';
    right: -57px;
    top: 0;
}

/* .pk-main-menu>li:nth-child(6) {
    display: none;
} */

.cater-section-block {
    padding: 70px 0px;
    background: #fff;
}

.page-id-16 .rp-catering-benefits-section {
    display: none;
}

.page-id-16 .contact-form .col-lg-6 {
    width: 100%;
    max-width: 803px;
}

.page-id-16 .contact-form {
    background: #f2f2f2;
}

.page-id-16 .rp-contact-card-heading {
    color: #99131a;
    font-family: var(--pk-heading-font);
    line-height: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0px;
    font-size: 45px;
    margin-bottom: 25px;
}

.section-btn {
    text-align: center;
    margin-top: 45px;
}

.page-id-16 .row.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
}

.page-id-16 #catering-event .col-lg-6:has(#need_event_venueyes) {
    display: none;
}

.page-id-16 #catering-event .col-lg-12:has(#message) {
    grid-column: 1/3;
}


.page-id-16 #catering-event .col-lg-6:has(#best_way_to_reachemail) {
    grid-column: 1/3;
}

.page-id-16 .radio_check_parent {
    display: flex;
    gap: 15px;
    margin-top: 11px;
}

.page-id-18 .rp-catering-benefits-section {
    display: none;
}

.page-id-22 .rp-contact-details-section .row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.page-id-22 .rp-contact-details-section .row .col-md-6 {
    width: 100%;
    padding: 0px;
    margin: 0px;
    max-width: 100%;
}

.page-id-22 .rp-contact-info-card {
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    animation: fadeUp 0.7s 0.25s ease both;
    padding-bottom: 40px;
    background: linear-gradient(90deg, #7e090f 0%, #a00e16 100%);
    border-radius: 0px;
    gap: 15px;
}

.page-id-22 .rp-contact-card-heading {
    color: #fff;
    font-size: 25px;
    margin-bottom: 2px !important;
}

.rp-contact-info-card a:hover,
.rp-contact-info-card a:hover h3,
.rp-contact-info-card a:hover p {
    color: #fff !important;
}

.page-id-22 .rp-contact-info-card {
    color: #fff;
}

.page-id-22 .rp-contact-info-card:hover {
    color: #fff !important;
}

.page-id-22 .rp-contact-info-card>.d-flex:nth-child(1),
.page-id-22 .rp-contact-info-card>.d-flex:nth-child(2) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.rp-contact-info-card>.d-flex:nth-child(3) {
    margin-bottom: 0px;
}

.first-row .rp-contact-card-heading {
    color: #970d14;
    font-size: 45px;
    margin-bottom: 11px !important;
}

.page-id-22 .contact-form .first-row.catering-request .rp-contact-form {
    gap: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
    gap: 22px;
    row-gap: 31px;
}

.page-id-22 .rp-contact-details-section .rp-contact-form-field .form-control,
.page-id-22 .contact-form .rp-contact-form-field .form-control {
    border-radius: 0px;
    color: #000;
    border: 1px solid #00000024;
}

.page-id-22 #contact-form .rp-contact-form-field:has(#message) {}

.page-id-22 #contact-form .rp-contact-form-field:has(#message) {
    grid-column: 1/3;
    margin-bottom: 13px;
}

.page-id-22 #contact-form>#contact_submit {}

.form-block-btn {
    grid-column: 1/3;
    margin-left: auto;
    border-top: 1px solid #0000001f;
    padding-top: 20px;
    width: 100%;
    max-width: 100%;
    padding-top: 36px;
    margin-top: 29px;
}


.rp-contact-submit-button {
    font-size: 20px;
    width: max-content;
    margin-left: auto;

}

.page-id-22 .rp-catering-benefits-section {
    display: none;
}

.page-id-22 .rp-catering-benefits-section {
    display: none;
}






























.page-id-20 .rp-review-grid {
    margin: 0px !important;
}

.page-id-20 section#popular-dishes .col-12 {
    margin: 0px;
}

.page-id-20 .rp-review-grid {
    row-gap: 20px;
}

.rp-testimonials-section {
    padding: 70px 0px;
}

@media (max-width: 1366.98px) {


    .home .pk-hero-section .pk-hero-container {
        padding: 131px 16px 88px !important;
    }



    .step-block:nth-child(2)::before {
        left: -65px;
    }


    .step-block:nth-child(3)::before {
        left: -73px;
    }

    .step-block:nth-child(4)::before {
        left: -56px;
    }
}

.page-id-20 .rp-cater-section-heading {
    display: none;
}


.page-id-14 .pk-info-container {
    display: none;
}

.page-id-14 .pk-info-bar {
    display: none;
}

.page-id-14 .pk-order-process-section {
    display: none;

}

















.menu-shell .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.86;
}



.menu-shell h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.menu-shell .hero p {
    max-width: 620px;
    margin: 18px 0 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.84);
}

.menu-shell .legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.menu-shell .legend span {
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 700;
}



.menu-shell .section {
    break-inside: avoid;
    width: 100%;
    margin-inline: auto;
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
}

.menu-shell .section:first-child {
    margin-top: 0;
}

.menu-shell .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.menu-shell .section-title-wrap {
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: space-between;
}


.menu-shell h2 {
    margin: 0;
    font-size: 45px;
    color: var(--pk-primary);
}

.menu-shell .section-note {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0px;
    white-space: nowrap;
}

.menu-shell .menu-list {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eadede;
    border-radius: 0px;
}

.menu-shell .menu-header,
.menu-shell .menu-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px 140px 140px;
    align-items: center;
}

.menu-shell .menu-header {
    background: #951017;
    color: #fff;
    border-bottom: 1px solid #eadede;
}

.menu-shell .menu-header div {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.menu-shell .menu-header .size {
    text-align: center;
    /* border-right: 1px solid #ffffff66; */
}

.menu-shell .menu-row {
    border-bottom: 1px solid #f1e9e8;
    transition: background 0.18s ease;
}

.menu-shell .menu-row:last-child {
    border-bottom: 0;
}

.menu-shell .menu-row:hover {
    background: #fffafa;
}

.menu-shell .menu-row>div {
    padding: 15px 16px;
    font-size: 16px;
}

.menu-shell .dish {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.menu-shell .price {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.menu-shell .price::before {
    content: "$";
    margin-right: 1px;
    color: #951017;
    font-weight: 800;
}

.menu-shell .footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 58px 28px;
    background: #faf5f3;
    border-top: 1px solid #eadede;
    color: #6f6868;
    font-size: 12px;
}

.menu-shell .footer strong {
    color: #951017;
}

.menu-shell p:empty {
    display: none;
}

section.section {
    padding: 70px 0px;
}

.menu-image-block {
    min-height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.menu-shell .container {
    width: 100%;
    max-width: 100%;
    padding: 0px;
}

.main-new-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.section-head2 .section-title-wrap {
    justify-content: center;
    margin-bottom: 25px;
}

.section-head2 .section-note {
    text-align: right;
    margin-bottom: 7px;
}

.section-head2 .main-new-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 38px;
}

.punjabi-kabab-gyro img {
    position: fixed;
    max-width: 75px;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: none;
}


.header-slick-block p {
    margin-bottom: 0px;
    color: #fff;
    width: 100%;
    max-width: 797px;
    margin-inline: auto;
}

.icon-root {
    display: flex;
    gap: 10px;
    align-items: center;
}


.title-root {
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-root img {
    width: 100%;
    max-width: 71px;
}

.text-block-head p {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 40px;
}

#popular .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#popular .row .col-lg-4 {
    width: 100%;
    max-width: 100%;
    padding: 0px;
    margin: 0px;
}

section.new-section-block {
    padding: 70px 0;
    color: #ffffff;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.035), transparent 30%), #090a0b;
}

.new-section-block .pk-specials-heading {
    text-align: center;
    margin-bottom: 25px;
}

.grid-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

a.custom-logo-link {
    position: relative;
}

a.custom-logo-link img {
    width: 100%;
    max-width: 203px;
}

.logo-tag img {
    width: 100%;
    max-width: 60px !important;
}

.logo-tag {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -8%);
}

.pk-order-btn img {
    width: 100%;
    max-width: 56px;
}

#catering .container {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1270.98px) {

    .rp-catering-quote-banner {
        justify-content: space-between;
    }

}

@media (max-width: 1260.98px) {

    .limit-box {
        flex-direction: column;
    }


    .pk-hero-visual::before {
        background: #000;
    }

    .pk-contact-hero-text {
        max-width: 100% !important;
    }

    .pk-header .wp-block-navigation.pk-main-menu,
    .pk-header .wp-block-navigation.pk-main-menu .wp-block-navigation__container {
        display: none;
    }

    .pk-header .pk-header-actions {
        display: none;
    }

    .phone-bar a {
        background-color: #9f1018;
        padding: 10px 0px;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.1px;
        font-size: 17px;
    }

    .phone-bar a+a {
        background-color: #141516;
    }

    .phone-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .pk-fresh-badge {
        display: none;
    }

    .pk-hero-bg-video {
        position: unset;
    }

    .home .pk-hero-container {
        padding: 35px 0px !important;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .entry-content .wp-block-group.row,
    .wp-block-post-content .wp-block-group.row,
    main .wp-block-group.row {
        justify-content: center;
    }

    .pk-hero-eyebrow {
        font-size: 30px;
    }

    .pk-hero-title {
        font-size: 70px;
    }

    .pk-hero-tagline {
        font-size: 30px;
    }

    .pk-hero-buttons {
        justify-content: center;
    }

    .pk-hero-tagline {
        justify-content: center;
    }

    .pk-info-bar {
        position: unset;
    }

    .pk-info-container .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 10px;
    }

    .pk-info-item::after {
        display: none;
    }

    .pk-info-container .col-xl-3 {
        width: 100%;
        max-width: 100%;
    }

    .pk-info-item {
        flex-direction: column;
        text-align: center;
    }


    .pk-info-icon {
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .pk-info-container {
        padding: 35px 35px;
    }

    .pk-info-item {
        background: #141414;
    }

    .pk-order-steps-panel {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .pk-order-benefits-panel {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .pk-order-benefit:not(:last-child)::after {
        display: none;
    }

    .pk-order-benefit {
        width: 100%;
        align-items: center;
        flex-direction: column;
        gap: 12px;
    }

    .pk-order-step-list {
        gap: 18px;
        flex-direction: column;
        gap: 15px;
        margin-top: 17px;
    }

    .pk-order-step {
        flex-direction: column;
        gap: 10px;
    }

    .pk-order-step-number {
        width: 27px;
        height: 27px;
        flex: 0 0 27px;
        font-size: 16px;
    }

    .pk-menu-row {
        flex-direction: column;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .pk-menu-row .col-md-6 {
        width: 100%;
        max-width: 100%;
    }

    .pk-today-specials-section .row {
        flex-direction: column;
    }

    .pk-today-specials-section .row .col-lg-4 {
        width: 100%;
        max-width: 100%;
    }

    .pk-today-specials-section .col-xl-7,
    .pk-today-specials-section .col-xl-5 {
        width: 100%;
        max-width: 100%;
    }

    .Why-Order .pk-highlights-items {
        flex-direction: column;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        row-gap: 43px;
    }

    .pk-order-steps-panel {
        display: none;
    }

    .pk-special-card {
        max-width: 700px !important;
        margin-inline: auto;
    }

    .pk-specials-heading {
        text-align: center;
        margin-bottom: 25px;
    }

    .pk-footer-contact-list li {
        flex-direction: column;
        gap: 10px !important;
    }

    .pk-footer-contact-list li br {
        display: none;
    }

    .page-id-14 #home {
        min-height: auto;
    }

    .pk-header .pk-header-container {
        min-height: auto;
    }

    .page-id-16 #party-trays {
        background: #000;
    }

    .rp-catering-benefits-box {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 30px;
    }

    .rp-catering-benefit-content h3 br {
        display: none;
    }

    .mob-expand-submenu i {
        left: 1px !important;
        top: 0px !important;
    }

    .mobmenur-container {
        position: absolute;
        right: 0px;
        top: 4em !important;
        background: #fcc95a;
        height: 45px;
        width: 45px;
        display: grid;
        place-items: center;
        margin-right: 4% !important;
        font-size: 10px !important;
    }

    #mobmenuright a {
        padding: 7px 10px;
        width: 100%;
        letter-spacing: 1px !important;
        background: transparent !important;
        border-bottom: 0px;
        font-family: sans-serif !important;
        font-size: 17px !important;
        font-weight: 600 !important;
        color: #000000 !important;
        border-bottom: 1px solid #00000038;
    }

    .menu-item-872 {
        position: relative;
    }

    .mobmenu-right-panel .mob-cancel-button {
        color: #e4e163 !important;
        height: 35px;
        width: 35px;
        background: #000000;
        font-size: 25px !important;
        display: grid !important;
        place-content: center;
    }

    .mobmenu-right-panel {
        background-color: var(--pk-header-bg) !important;
    }

    .mob-icon-menu:before {
        margin: 0 !important;
    }

    .mobmenu r-container i {
        color: #ffffff !important;
    }

    .mobmenu-content li {
        padding: 0 !important;
    }

    ul#mobmenuright {
        margin-top: 35px !important;
    }

    .mob-menu-logo-holder {
        display: none !important;
    }

    .mob-menu-header-holder.mobmenu {
        background: transparent !important;
        display: block !important;
        position: absolute;
    }

    .mobmenu .headertext {
        display: none;
    }

    body.mob-menu-slideout-over {
        padding: 0px !important;
    }

    .mobmenu-content #mobmenuright>li>a:hover {
        background-color: transparent !important;
    }

    .mobmenu-content #mobmenuright .sub-menu {
        background-color: #9b090e !important;
    }

    .mob-expand-submenu {
        position: relative !important;
        right: 0px !important;
        float: right !important;
        height: 25px;
        width: 25px;
        display: grid;
        place-content: center;
        top: 1px !important;
        background: #ec1c23 !important;
        border-radius: 50%;
        z-index: 777 !important;
        left: auto !important;
    }

    .mobmenu-content #mobmenuright li:hover {
        background-color: #c7c453 !important;
    }

    .mob-expand-submenu i {
        font-size: 18px !important;
        color: #ffffff !important;
        margin-top: 1px !important;
    }

    .mob-menu-header-holder.mobmenu.mob-menu-header-holder.mobmenu {
        /* z-index: 99999999 !important; */
        position: absolute !important;
        inset: 0 auto auto auto !important;
        height: 0px;
    }

    .mob-menu-header-holder.mobmenu {
        background: transparent !important;
        display: block !important;
    }

    .mobmenur-container.mobmenur-container.mobmenur-container.mobmenur-container {
        position: absolute;
        right: 0px;
        top: 75px !important;
        background: #9f1018;
        height: 38px;
        width: 38px;
        display: grid;
        place-items: center;
        margin-right: 2% !important;
        font-size: 10px !important;
    }

    .mobmenu-content li {
        border: 0px !important;
    }

    .home .pk-hero-section .pk-hero-container {
        padding: 35px 0px !important;
    }



    .new-review-section .main-grid-block {
        grid-template-columns: 1fr;
        margin-block: 12px;
        gap: 40px;
    }

    .step-block:nth-child(2)::before {
        display: none;
    }

    .step-block:nth-child(3)::before {
        display: none;
    }

    .step-block:nth-child(4)::before {
        display: none;
    }

    .new-step-block .container {
        flex-direction: column;
    }

    .new-step-block .main-grid-block {
        flex-direction: column;
    }

    .new-step-block .step-block {
        flex-direction: column;
        background: #0b0c0d;
        padding: 15px;
        width: 100%;
    }
}



@media(max-width:1024px) {
    .pk-catering-actions {
        justify-content: center;
    }

    .pk-catering-features {
        justify-content: center;
    }

    .pk-contacthero-eyebrow {
        font-size: 35px;
    }

    .pk-contacthero-title {
        font-size: 35px;
    }

    .pk-hero-container {
        min-height: auto;
    }

    .pk-footer-contact-list {
        margin-top: 30px;
    }

    .pk-footer-container .row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .pk-footer-links-column {
        display: none;
    }

    .pk-footer-contact-list li {
        justify-content: center;
        align-items: center;
    }

    .pk-footer-contact-column {
        margin-top: 0px !important;
    }

    .pk-special-information-panel {
        padding: 10px;
    }

    .new-step-block .container {
        flex-direction: column;
    }

    .new-step-block .main-grid-block {
        flex-direction: column;
    }
}


@media(max-width:991px) {
    .rp-catering-benefit-icon {
        margin-inline: auto;
    }

    .rp-catering-benefit-item {
        gap: 10px;
        text-align: center;
    }

    .rp-catering-benefits-box {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .rp-party-tray-ribbon span {
        font-size: 22px;
    }

    .rp-cater-section-heading h2 {
        font-size: 25px;
    }

    .rp-cater-event-card {
        min-height: auto;

    }

    .rp-catering-quote-banner {
        padding: 15px;
    }

    .banner-about-img img {
        margin-top: 30px;
    }

    .rp-catering-quote-content {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}


@media(max-width:768px) {
    .pk-highlights-heading-wrap {
        padding: 0px;
    }

    .pk-highlight-item:last-child {
        grid-column: 1/3;
    }

    .Why-Order .pk-highlights-items {
        gap: 0px;
    }


    .Why-Order .pk-highlights-items {
        grid-template-columns: 1fr 1fr;
    }

    .pk-highlight-item,
    .pk-highlight-item:last-child {
        flex-direction: column;
        gap: 13px;
        text-align: center;
    }

    .pk-info-content strong {
        font-size: 22px;
    }

    .pk-menu-row {
        grid-template-columns: 1fr;
    }

    .pk-hero-bg-video {
        position: unset;
        height: 322px;
        object-position: 85%;
    }

    .pk-service-btn {
        justify-content: center;
    }

    .pk-hero-eyebrow {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .pk-hero-title {
        font-size: 60px;
    }

    .pk-info-container {
        padding: 35px 10px;
    }

    .pk-hero-title {
        font-size: 50px !important;
    }

    .pk-menu-section {
        padding: 25px 0px;

    }

    .common-section-heading {
        font-size: 45px;
    }

    .rp-review-card {
        padding: 20px;
    }

    .mobmenur-container.mobmenur-container.mobmenur-container.mobmenur-container {
        right: 0px;
        margin-right: 5% !important;
    }
}




/* ---------- Catering ---------- */
.catering-home {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.catering-home h2.section-title {
    color: var(--pk-primary);
    font-size: 45px;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.catering-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    animation: 30s linear 0s infinite normal none running bg-marquee;
}

@keyframes bg-marquee {
    0% {
        background-position: 0;
    }

    100% {
        background-position: -1190px;
    }
}


.tag-image img {
    display: none;
}

.catering-home-content {
    position: relative;
    z-index: 2;
}

.catering-home {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.catering-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    animation: bg-marquee 30s linear infinite;
}


.catering-home-content {
    position: relative;
    z-index: 2;
}

.catering-card {
    max-width: 760px;
    background-image: url("https://develop.stackblue.com/punjabi-kabab-gyro/wp-content/uploads/2026/08/catering-services-bg-1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 34px;
    padding: 55px 48px;

    position: relative;
}


.catering-home {

    animation: 30s linear 0s infinite normal none running bg-marquee;

}

@keyframes bg-marquee {
    0% {
        background-position: 0;
    }

    100% {
        background-position: -1190px;
    }
}

.catering-card:before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    border: 1px solid rgba(200, 155, 60, 0.18);
    pointer-events: none;
}


.catering-home-title {
    color: #234126;
    margin-bottom: 6px;
}

.catering-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    color: #b68a3b;
    font-size: 2rem;
    margin-bottom: 25px;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
    margin-top: 23px;
}
p.pk-footer-open-days {
    display: none;
}

.event-item {
    background: #fff;
    border: 1px solid #ece6dd;
    border-radius: 18px;
    padding: 24px 15px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    gap: 9px;
        border-color: #b68a3b;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.event-item:hover {
    transform: translateY(-6px);
    border-color: #b68a3b;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.event-item svg {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    stroke: #951017;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-item span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
}

.catering-btns {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid #c89b3c;
    color: #234126;
}


.scrolled {
    position: fixed;
    width: 100%;
    max-width: 100%;
    z-index: 999;
}

.scrolled .logo-tag {
    display: none;
}


@media (max-width: 1700px) {
    .pk-footer-container {
        padding-right: 40px;
        padding-left: 40px;
    }

    .pk-highlights-heading-wrap {
        width: 220px;
        min-width: 220px;
    }

    .pk-highlights-items {
        width: calc(100% - 220px);
    }

    .pk-highlight-item {
        padding-right: 13px;
        padding-left: 13px;
    }

    .pk-highlight-icon {
        width: 70px;
        height: 70px;
        margin-right: 13px;
        flex-basis: 70px;
    }

    .pk-highlight-icon svg {
        width: 41px;
        height: 41px;
    }

    .pk-highlight-content strong {
        font-size: 22px;
    }

    .pk-highlight-content small {
        font-size: 17px;
    }

    .pk-footer-column {
        padding-right: 22px;
        padding-left: 22px;
    }

    .pk-footer-payment-column {
        padding-left: 30px;
    }

    .pk-footer-contact-list a,
    .pk-footer-contact-list address {
        font-size: 16px;
    }

    .pk-payment-card {
        width: 70px;
        flex-basis: 70px;
    }
}
@media (max-width: 1599.98px) {
    .pk-header-container {
        padding-right: 28px;
        padding-left: 28px;
    }

    .pk-brand-space {
        width: 100px;
        min-width: 100px;
        margin-right: 34px;
    }

    .pk-main-menu {
        gap: 42px;
    }

    .pk-main-menu .nav-link {
        font-size: 20px;
    }

    .pk-header-actions {
        margin-left: 38px;
    }

    .pk-phone-icon {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .pk-phone-icon svg {
        width: 33px;
        height: 33px;
    }

    .pk-phone-content strong {
        font-size: 34px;
    }

    .pk-order-btn {
        font-size: 31px;
    }

    .pk-hero-container {
        padding-right: 60px;
        padding-left: 60px;
    }

    .pk-fresh-badge {
        right: 45px;
    }

    .pk-info-item {
        padding-right: 22px;
        padding-left: 22px;
    }

    .pk-order-step {
        font-size: 16px;
    }

    .pk-order-benefit {
        padding-right: 16px;
        padding-left: 16px;
    }

    .pk-order-benefit-text strong {
        font-size: 18px;
    }



    .pk-menu-item {
        font-size: 15px;
    }

    .pk-menu-card-thumb {
        width: 92px;
        height: 70px;
    }



    .rp-catering-quote-banner {
        padding: 24px 34px;
    }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
    .rp-catering-benefits-box {
        padding-right: 20px;
        padding-left: 20px;
    }

    .rp-catering-benefit-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 1399.98px) {
    .pk-header .navbar {
        min-height: 120px;
    }

    .pk-brand-space {
        width: 85px;
        min-width: 85px;
        margin-right: 25px;
    }

    .pk-main-menu {
        gap: 29px;
    }

    .pk-main-menu .nav-link {
        font-size: 18px;
    }

    .pk-header-actions {
        margin-left: 26px;
    }

    .pk-phone-content small {
        font-size: 17px;
    }

    .pk-phone-content strong {
        font-size: 29px;
    }

    .pk-order-btn {
        min-height: 56px;
        font-size: 28px;
    }

    .pk-hero-title {
        font-size: 65px;
    }

    .pk-hero-content {
        max-width: 680px;
    }

    .pk-service-btn {
        width: 310px;
    }

    .pk-service-btn-content strong {
        font-size: 30px;
    }

    .pk-service-btn-content small {
        font-size: 19px;
    }

    .pk-highlights-layout {
        align-items: flex-start;
        flex-direction: column;
    }

    .pk-highlights-heading-wrap {
        width: 100%;
        margin-bottom: 25px;
    }

    .pk-highlights-heading br {
        display: none;
    }

    .pk-highlights-items {
        width: 100%;
    }

    .pk-footer-grid {
        grid-template-columns: 25% 15% 21% 39%;
    }

    .pk-footer-payment-column {
        grid-column: 1 / -1;
        margin-top: 22px;
        padding: 22px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .pk-footer-payment-column::after {
        display: none;
    }

    .pk-footer-payment-column {
        display: grid;
        grid-template-columns: auto auto 1fr;
        align-items: center;
        column-gap: 25px;
    }

    .pk-footer-payment-column h3,
    .pk-footer-payment-title {
        margin: 0;
    }

    .pk-footer-policy-links {
        margin: 0 0 0 auto;
    }


    .rp-catering-quote-banner {
        gap: 20px;
        padding: 24px;
        justify-content: center;
    }


    .pk-order-benefit-icon {
        width: 48px;
        min-width: 48px;
        margin-right: 9px;
    }

    .pk-order-benefits-panel {
        padding: 14px 0px;
    }
}

@media (min-width: 1200px) {
    .rp-cater-options-container {
        width: calc(100% - 98px);
        max-width: 1650px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 0;
        padding-left: 0;
    }
}
@media (max-width: 1199.98px) {
    .pk-header .navbar {
        min-height: 108px;
        padding: 9px 0;
    }

    .pk-brand-space {
        width: 205px;
        min-width: 205px;
    }

    .pk-header .navbar-collapse {
        margin-top: 10px;
        padding: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        background: var(--pk-header-bg);
    }

    .pk-main-menu {
        align-items: flex-start;
        gap: 0;
    }

    .pk-main-menu .nav-link {
        display: inline-block;
        padding: 11px 0 !important;
    }

    .pk-header-actions {
        width: 100%;
        min-width: 0;
        margin: 18px 0 0;
        flex-direction: row;
    }

    .pk-phone-block,
    .pk-order-btn {
        width: 50%;
    }

    .pk-order-btn {
        padding: 10px 20px;
    }

    .pk-hero-section {
        min-height: 685px;
    }

    .pk-hero-container {
        min-height: 525px;
        padding: 90px 35px 195px;
    }

    .pk-fresh-badge {
        width: 142px;
        height: 142px;
    }

    .pk-fresh-badge-text {
        font-size: 23px;
    }

    .pk-fresh-badge-highlight {
        font-size: 27px;
    }

    .pk-info-bar {
        min-height: 160px;
    }

    .pk-info-item {
        min-height: 80px;
    }

    .pk-info-item:nth-child(2)::after {
        display: none;
    }

    .pk-order-benefits-panel {
        min-height: 112px;
    }

    .pk-menu-card h3 {
        padding-right: 70px;
        padding-left: 70px;
        font-size: 26px;
    }

    .pk-menu-item {
        min-height: 25px;
        font-size: 16px;
    }

    .pk-specials-heading {
        margin-top: 6px;
    }

    .pk-special-information-panel {
        min-height: 270px;
    }

    .pk-catering-hero-overlay {
        width: 115%;
    }

    .rp-party-trays-wrapper {
        grid-template-columns: 1fr;
    }

    .rp-party-tray-list {
        align-items: center;
    }

    .rp-catering-benefits-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
        padding: 18px;
    }
}

@media (max-width: 1024px) {
	.pk-catering-main-heading, .pk-catering-secondary-heading, .pk-catering-hero-content {
		text-align: center;
	}
	.rp-cater-event-card {
		max-width: 48% !important;
	}
	.pk-catering-divider {
		justify-content: center;
	}
	.page-id-16 .contact-form .first-row.catering-request {
		padding: 15px;
	}
	.page-id-16 .row.form-row {
		display: flex;
	}
	.wp-block-group.row>.col-md-4:nth-child(2) .pk-footer-brand-column {
		position: relative;
		left: 0;
	}
	.grecaptcha-badge {
		bottom: 250px !important;
	}
	.site-tag {
		right: 12px;
		bottom: 78px;
		width: 100px;
	}
}

@media (max-width: 991.98px) {
    .pk-order-step-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .pk-order-steps-panel {
        min-height: 175px;
    }

    .pk-order-benefits-panel {
        padding: 18px 10px;
    }

    .pk-order-benefit {
        padding-right: 10px;
        padding-left: 10px;
    }

    .pk-order-benefit-icon svg {
        width: 43px;
        height: 43px;
    }

    .pk-order-benefit-text strong {
        font-size: 18px;
    }

    .pk-order-benefit-text small {
        font-size: 14px;
    }

    .pk-special-card {
        min-height: 265px;
    }

    .pk-highlights-items {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }

    .pk-highlight-item:last-child {
        grid-column: 1 / -1;
    }

    .pk-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pk-footer-column {
        padding: 24px;
    }

    .pk-footer-column:not(:last-child)::after {
        display: none;
    }

    .pk-footer-brand-column {
        padding-left: 0;
    }

    .pk-footer-contact-column {
        border-bottom: 0;
    }

    .pk-footer-payment-column {
        display: block;
        grid-column: 1 / -1;
        padding: 27px 0 0;
    }

    .pk-footer-payment-column h3 {
        margin-bottom: 12px;
    }

    .pk-footer-payment-title {
        margin-bottom: 20px;
    }

    .pk-footer-policy-links {
        margin-top: 28px;
    }


    .rp-catering-quote-copy h2 {
        font-size: 24px;
    }

    .rp-catering-quote-copy p {
        font-size: 18px;
    }

    .rp-catering-quote-icon {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
        margin-right: 24px;
    }

    .rp-catering-quote-banner {
        justify-content: center;
    }

    .rp-catering-quote-button {
        flex: 0 0 auto;
        gap: 16px;
        width: auto;
        min-height: auto;
        padding: 12px 24px;
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .common-section-padding {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .pk-header-container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .pk-brand-space {
        width: 65px;
        min-width: 65px;
        margin-right: 0;
    }

    .pk-header-actions {
        flex-direction: column;
    }

    .pk-phone-block,
    .pk-order-btn {
        width: 100%;
    }

    .pk-phone-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .pk-phone-icon svg {
        width: 27px;
        height: 27px;
    }

    .pk-phone-content strong {
        font-size: 27px;
    }

    .pk-hero-section {
        min-height: 860px;
    }

    .pk-hero-section.menu-hero-banner {
        min-height: 650px;
    }

    .pk-hero-container {
        min-height: auto;
        padding: 145px 20px 370px;
    }

    .pk-hero-content {
        max-width: 100%;
    }

    .pk-hero-eyebrow {
        font-size: 43px;
    }

    .pk-hero-title {
        font-size: clamp(82px, 25vw, 115px);
        line-height: 0.86;
    }

    .pk-hero-tagline {
        gap: 10px;
        font-size: clamp(25px, 7vw, 34px);
    }

    .pk-hero-tagline i {
        width: 6px;
        height: 6px;
        flex-basis: 6px;
    }

    .pk-hero-buttons {
        flex-direction: column;
    }

    .pk-service-btn {
        width: 100%;
        max-width: 370px;
        min-height: 88px;
    }

    .pk-fresh-badge {
        top: 27px;
        right: 20px;
        width: 115px;
        height: 115px;
        border-width: 3px;
    }

    .pk-fresh-badge-text {
        font-size: 19px;
    }

    .pk-fresh-badge-highlight {
        margin: 2px 0;
        font-size: 22px;
    }

    .pk-info-bar {
        min-height: 335px;
    }

    .pk-info-container {
        padding: 0 18px;
    }

    .pk-info-item {
        min-height: 82px;
        padding: 12px 8px;
    }

    .pk-info-item::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
    }

    .pk-info-icon {
        width: 56px;
        min-width: 56px;
        margin-right: 13px;
    }

    .pk-info-icon svg {
        width: 45px;
        height: 45px;
    }

    .pk-info-content strong {
        font-size: 25px;
    }

    .pk-info-content small {
        font-size: 18px;
    }

    .pk-content-container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .pk-order-steps-panel {
        padding: 18px;
    }

    .pk-order-phone {
        width: 58px;
        height: 58px;
        margin-right: 12px;
        flex-basis: 58px;
    }

    .pk-order-phone svg {
        width: 46px;
        height: 46px;
    }

    .pk-order-steps-content h2 {
        font-size: 26px;
    }

    .pk-order-benefits-panel {
        flex-direction: column;
    }

    .pk-order-benefit {
        width: 100%;
        min-height: 79px;
        padding: 10px 17px;
    }

    .pk-order-benefit:not(:last-child)::after {
        top: auto;
        right: 17px;
        bottom: 0;
        left: 17px;
        width: auto;
        height: 1px;
    }

    .pk-order-benefit-text strong {
        font-size: 22px;
    }

    .pk-order-benefit-text small {
        font-size: 16px;
    }

    .pk-menu-heading {
        gap: 7px;
    }

    .pk-menu-heading .common-section-heading {
        font-size: 42px;
    }

    .pk-menu-heading-decoration {
        width: 48px;
    }

    .pk-menu-card {
        padding-right: 12px;
        padding-left: 12px;
    }

    .pk-menu-card h3 {
        padding-right: 65px;
        padding-left: 15px;
        font-size: 24px;
    }

    .pk-menu-item {
        min-height: 25px;
        font-size: 16px;
    }

    .pk-menu-name {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pk-special-information-bottom {
        flex-direction: column;
    }

    .pk-open-days-block,
    .pk-free-delivery-block {
        width: 100%;
        min-height: 145px;
        padding: 16px 0;
    }

    .pk-open-days-block {
        border-right: 0;
        border-bottom: 2px solid rgba(68, 60, 29, 0.17);
    }

    .pk-footer-container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .pk-highlights-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .pk-highlights-heading {
        font-size: 36px;
    }

    .pk-highlights-items {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pk-highlight-item,
    .pk-highlight-item:last-child {
        width: 100%;
        min-height: 105px;
        padding: 13px 0;
        grid-column: auto;
        border-bottom: 1px solid rgba(149, 16, 23, 0.13);
    }

    .pk-highlight-item:last-child {
        border-bottom: 0;
    }

    .pk-highlight-icon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .pk-highlight-content strong {
        font-size: 24px;
    }

    .pk-highlight-content small {
        font-size: 18px;
    }

    .pk-footer-grid {
        display: block;
    }

    .pk-footer-column {
        padding: 28px 0;
    }

    .pk-footer-brand-column {
        text-align: center;
    }

    .pk-footer-logo {
        margin-right: auto;
        margin-left: auto;
    }

    .pk-footer-socials {
        justify-content: center;
    }

    .pk-footer-copyright {
        white-space: normal;
        text-align: center;
    }

    .pk-footer-links li,
    .pk-footer-column h3,
    .pk-footer-contact-list li {
        text-align: center;
    }

    .pk-footer-contact-list li {
        justify-content: center;
    }

    .pk-footer-payment-column {
        padding-bottom: 15px;
    }

    .pk-payment-cards {
        flex-wrap: wrap;
    }

    .pk-footer-policy-links {
        align-items: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        justify-content: center;
        margin: 0;
    }

    .pk-footer-policy-links span {
        display: none;
    }


    .pk-header .navbar {
        min-height: 75px;
        padding: 9px 0;
    }

    .pk-contact-hero-bg .pk-hero-container {
        padding: 85px 20px;
    }

    .pk-contact-hero-text {
        font-size: 18px;
    }

    .rp-catering-quote-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        margin-right: 12px;
    }

    .pk-catering-hero .pk-hero-container {
        padding: 65px 20px;
    }

    .pk-catering-actions,
    .pk-catering-features {
        flex-wrap: wrap;
    }

    .pk-catering-description {
        margin: 0 0 10px;
        font-size: 18px;
    }

    .pk-catering-main-heading {
        font-size: 68px;
    }

    .pk-catering-secondary-heading {
        font-size: 36px;
    }

    .pk-catering-quote-btn,
    .pk-catering-call-btn {
        font-size: 24px;
        min-width: none;
    }

    .pk-catering-actions {
        gap: 16px;
    }

    .rp-cater-section-heading h2 {
        font-size: 36px;
    }

    .aboutus-details-section h2 {
        font-size: 36px;
    }

    .rp-cater-heading-decoration {
        width: 52px;
    }

    .rp-cater-events-grid {
        gap: 14px;
    }

    .rp-cater-event-card h3 {
        font-size: 18px;
    }

    .rp-cater-section-heading {
        gap: 16px;
    }

    .rp-party-tray-card {
        display: block;
        min-height: 0;
        padding: 30px 25px 35px;
    }

    .rp-party-tray-ribbon span {
        font-size: 25px;
    }

    .rp-party-tray-serving {
        font-size: 20px;
    }

    .rp-party-tray-list li {
        padding-left: 31px;
        font-size: 16px;
    }

    .rp-catering-benefits-box {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px 15px;
    }

    .rp-catering-benefit-icon {
        width: 60px;
        height: 60px;
    }

    .rp-catering-benefit-content h3 {
        font-size: 16px;
    }

    .rp-catering-benefit-content p {
        font-size: 14px;
    }

    .rp-catering-benefit-item {
        grid-template-columns: 62px minmax(0, 1fr);
        column-gap: 14px;
    }

    .rp-contact-form-two-columns {
        grid-template-columns: 1fr;
    }

    .gallery-section.common-section-padding {
        padding-top: 65px;
        padding-bottom: 35px;
    }

    .rp-review-name {
        font-size: 28px;
    }

    .rp-contact-card-heading {
        font-size: 24px;
    }

    .contact-form .first-row.catering-request {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {



    .rp-cater-event-card h3 {
        font-size: 16px;
    }

    .rp-catering-quote-copy h2 {
        font-size: 20px;
    }

    .rp-catering-quote-copy p {
        font-size: 16px;
    }

    .common-section-padding {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .pk-hero-title {
        font-size: 79px;
    }

    .pk-hero-eyebrow {
        font-size: 38px;
    }

    .pk-hero-tagline {
        gap: 7px;
        font-size: 24px;
    }

    .pk-service-btn {
        padding-right: 18px;
        padding-left: 18px;
    }

    .pk-service-btn-icon {
        width: 50px;
        min-width: 50px;
        margin-right: 12px;
    }

    .pk-service-btn-content strong {
        font-size: 28px;
    }

    .pk-service-btn-content small {
        font-size: 18px;
    }

    .pk-order-steps-panel {
        align-items: flex-start;
    }

    .pk-order-phone {
        width: 44px;
        min-width: 44px;
        margin-right: 9px;
    }

    .pk-order-phone svg {
        width: 38px;
        height: 38px;
    }

    .pk-order-step {
        font-size: 14px;
    }

    .pk-menu-card h3 {
        padding-left: 0;
        font-size: 21px;
        text-align: left;
    }

    .pk-menu-card-thumb {
        width: 83px;
        height: 63px;
    }

    .pk-menu-number {
        width: 29px;
        min-width: 29px;
    }

    .pk-menu-item {
        font-size: 16px;
    }

    .pk-special-address strong {
        font-size: 18px;
    }

    .pk-special-copy {
        width: 58%;
    }

    .pk-save-badge {
        right: 30px;
    }

    .pk-highlight-icon {
        width: 64px;
        height: 64px;
        margin-right: 12px;
        flex-basis: 64px;
    }

    .pk-highlight-icon svg {
        width: 37px;
        height: 37px;
    }

    .pk-highlight-content strong {
        font-size: 21px;
    }

    .pk-highlight-content small {
        font-size: 16px;
    }

    .pk-footer-logo {
        width: 265px;
    }

    .pk-footer-socials {
        gap: 14px;
    }


    .pk-footer-contact-list a,
    .pk-footer-contact-list address {
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .pk-fresh-badge {
        display: none;
    }

    .pk-hero-container {
        min-height: auto;
        padding: 85px 20px;
    }


    .pk-contact-hero-bg .pk-hero-container {
        padding: 45px 20px;
    }


    .gallery-section.common-section-padding {
        padding-top: 45px;
        padding-bottom: 25px;
    }
}

