  .vf-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── TOP FOOTER ── */
  .vf-top {
    background: #fcd00c;
    padding: 52px 0 44px;
  }

  .vf-top-inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr 1fr;
    gap: 48px;
    align-items: start;
  }

  /* COL 1 */
  .vf-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .vf-flame {
    width: 54px;
    height: 66px;
    flex-shrink: 0;
  }

  .vf-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .vf-wordmark-vip {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: #b01e23;
    margin-bottom: 2px;
  }

  .vf-wordmark-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #b01e23;
    letter-spacing: 2px;
  }

  .vf-brand-location-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
  }

  .vf-brand-address {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .vf-brand-email {
    font-size: 13px;
    color: #222;
  }

  .vf-brand-email a {
    color: #b01e23;
    text-decoration: none;
    font-weight: 600;
  }

  .vf-brand-email a:hover { text-decoration: underline; }

  /* COL 2: About */
  .vf-col-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2.5px;
    color: #111;
    margin-bottom: 14px;
  }

  .vf-about-text {
    font-size: 13.5px;
    color: #333;
    line-height: 1.7;
  }

  /* COL 3: Social */
  .vf-social-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .vf-social-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.15s ease;
  }

  .vf-social-list li a:hover { transform: translateX(4px); }

  .vf-social-icon {
    width: 42px;
    height: 42px;
    background: #111;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .vf-social-list li a:hover .vf-social-icon { background: #8B0000; }

  .vf-social-icon svg {
    width: 20px;
    height: 20px;
    fill: #FFD700;
  }

  /* ── BOTTOM FOOTER ── */
  .vf-bottom {
    background: #1a1a1a;
    padding: 18px 0;
  }

  .vf-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .vf-bottom-inner p {
    font-size: 12px;
    color: #aaa;
    font-family: 'Barlow', sans-serif;
    margin: 0px;
  }

  .vf-bottom-inner a {
    color: #aaa;
    text-decoration: none;
  }

  .vf-bottom-inner a:hover { color: #FFD700; }
  
  
  
#options_form *{
    box-sizing:border-box;
}

#options_form .modal-content{
    border-radius:16px;
    overflow:hidden;
}

#options_form .modal-header{
    padding:14px 16px 10px;
    border-bottom:1px solid #f1f1f1;
}

#options_form .modal-title{
    font-size:22px;
    font-weight:700;
    margin:0;
    line-height:1.2;
}

#options_form .des-option{
    margin-top:5px;
    color:#777;
    font-size:13px;
    line-height:1.5;
}

#options_form .close{
    font-size:28px;
    opacity:.8;
}

/* ===== Body ===== */
#options_form .modal-body{
    padding:12px 14px 90px;
    max-height:75vh;
    overflow-y:auto;
    background:#fafafa;
}

/* ===== Top Summary ===== */
.item-summary{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    background:#fff;
    border-radius:12px;
    padding:12px;
    margin-bottom:14px;
    border:1px solid #eee;
}

.qty-box{
    display:flex;
    align-items:center;
    gap:8px;
}

.qty-box label{
    margin:0;
    font-size:13px;
    color:#666;
}

.qty-box input{
    width:42px;
    height:36px;
    text-align:center;
    border:1px solid #ddd;
    border-radius:8px;
    background:#f8f8f8;
    font-weight:600;
}

.item-price{
    font-size:20px;
    font-weight:700;
    color:#111;
}

/* ===== Option Card ===== */
.option-card{
    background:#fff;
    border-radius:14px;
    padding:14px;
    margin-bottom:12px;
    border:1px solid #eee;
}

.option-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.option-heading h4{
    margin:0;
    font-size:17px;
    font-weight:700;
}

.select-badge{
    font-size:11px;
    background:#f3f3f3;
    padding:4px 8px;
    border-radius:30px;
    color:#666;
}

/* ===== Radio / Checkbox Grid ===== */
.option-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    padding:0;
    margin:0;
    list-style:none;
}

.option-grid li{
    margin:0;
}

.option-item{
    position:relative;
}

.option-item input{
    position:absolute;
    opacity:0;
}

.option-item label{
    width:100%;
    margin:0;
    padding:12px 14px;
    border:1px solid #e7e7e7;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    background:#fff;
    cursor:pointer;
    transition:.2s;
    font-size:14px;
    font-weight:500;
}

.option-item label:hover{
    border-color:#d0d0d0;
}

.option-item input:checked + label{
    border-color:#d9232d;
    background:#fff5f5;
    color:#d9232d;
    font-weight:700;
}

.addon_price{
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
}

/* ===== Pizza Toppings Table ===== */
.topping-row{
    border:1px solid #eee;
    border-radius:12px;
    padding:10px;
    margin-bottom:10px;
    background:#fff;
}

.topping-name{
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.topping-options{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}

.topping-option{
    position:relative;
}

.topping-option input{
    position:absolute;
    opacity:0;
}

.topping-option label{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:10px 6px;
    text-align:center;
    margin:0;
    cursor:pointer;
    font-size:12px;
    background:#fff;
    transition:.2s;
}

.topping-option label span{
    display:block;
    font-weight:700;
    margin-top:2px;
}

.topping-option input:checked + label{
    border-color:#d9232d;
    background:#fff3f3;
    color:#d9232d;
}

/* ===== Footer ===== */
#options_form .modal-footer{
    position:sticky;
    bottom:0;
    background:#fff;
    padding:12px 14px;
    border-top:1px solid #eee;
}

.add_to_cart{
    width:100%;
    border:none;
    height:52px;
    border-radius:12px;
    /*background:#d9232d;*/
    color:#fff;
    font-size:16px;
    font-weight:700;
    letter-spacing:.3px;
}

/* ===== Mobile ===== */
@media(max-width:576px){

    #options_form .modal-dialog{
        margin:0;
        width:100%;
        max-width:100%;
        height:100%;
    }

    #options_form .modal-content{
        min-height:100vh;
        border-radius:0;
    }

    #options_form .modal-title{
        font-size:20px;
    }

    .option-heading h4{
        font-size:16px;
    }

    .item-price{
        font-size:18px;
    }

    .topping-options{
        grid-template-columns:1fr 1fr 1fr;
    }
    
    .vf-top-inner{grid-template-columns: 1fr;}
    .vf-bottom-inner{display: inherit;}
}
.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}

.whatsapp-float img{
    width: 35px;
    height: 35px;
}



.delivery-section {
  background: #111111;
  padding: 88px 40px;
  position: relative;
  overflow: hidden;
}
.delivery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: #fcd00c;
}
/* subtle grid watermark */
.delivery-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.delivery-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ─── LEFT CONTENT ─── */
.del-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fcd00c; color: #111111;
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 900; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 30px; margin-bottom: 20px;
}

.del-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 56px);
  line-height: 1.2; letter-spacing: 3px;
  color: #ffffff; margin-bottom: 20px;
}
.del-heading span { color: #fcd00c; }

.del-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 440px;
  margin-bottom: 32px;
}

/* Stats row */
.del-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  width: fit-content;
}
.del-stat {
  padding: 16px 24px;
  text-align: center;
}
.del-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 1px;
  color: #fcd00c; line-height: 1;
}
.del-stat strong span,
.del-stat strong i {
  font-size: 16px; color: #fcd00c;
}
.del-stat > span {
  font-family: 'Barlow', sans-serif;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  margin-top: 3px; display: block;
}
.del-stat-sep {
  width: 1px; background: rgba(255,255,255,0.08);
  align-self: stretch;
}

/* Certifications — single row */
.cert-row {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(252,208,12,0.2);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 4px;
}
.cert-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  transition: background 0.2s;
}
.cert-item:hover { background: rgba(252,208,12,0.06); }

/* UK score block */
.cert-score-block {
  flex-shrink: 0;
  text-align: center;
  background: #fcd00c;
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 48px;
}
.cert-big-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; line-height: 1; color: #111111;
}
.cert-stars {
  font-size: 8px; color: #111111; letter-spacing: 1px; margin-top: 2px;
}

/* PFA icon block */
.cert-icon-block {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fcd00c;
}

/* Text */
.cert-info { flex: 1; }
.cert-info strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 900;
  color: #ffffff; margin-bottom: 2px;
}
.cert-info span {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.4);
}

/* Green tick */
.cert-tick { font-size: 18px; color: #22c55e; flex-shrink: 0; }

/* Separator between the two items */
.cert-row-sep {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  flex-shrink: 0;
}

/* ─── MAP ─── */
.delivery-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 8px;
}

.map-container {
  background: #1a1a1a;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
  background: #181818;
}

.map-legend {
  display: flex;
  gap: 16px;
  padding: 10px 16px;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legend-item {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
}
.legend-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.legend-dot.yellow { background: #fcd00c; }
.legend-dot.red    { background: #E8190B; }
.legend-dot.green  { background: #22c55e; }

.rider-count-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 800;
  color: #4ade80;
  align-self: flex-start;
}
.rider-count-pill strong {
  font-size: 16px; color: #4ade80;
}
.rider-count-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: riderPulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes riderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

/* ─── MAP SVG ANIMATIONS ─── */

/* Pulse rings on restaurant locations */
.pulse-ring {
  transform-origin: 175px 150px;
  animation: mapPulse 3s ease-in-out infinite;
}
.pulse-ring-2 {
  transform-origin: 270px 220px;
  animation: mapPulse 3s ease-in-out 1s infinite;
}
.pulse-ring-3 {
  transform-origin: 365px 80px;
  animation: mapPulse 3s ease-in-out 1.5s infinite;
}
@keyframes mapPulse {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 0.2; }
}

/* Destination dots blinking */
.dest-blink { animation: destBlink 2s ease-in-out infinite; }
.dest-blink-2 { animation: destBlink 2s ease-in-out 0.7s infinite; }
.dest-blink-3 { animation: destBlink 2s ease-in-out 1.4s infinite; }
@keyframes destBlink {
  0%, 80%, 100% { opacity: 1; r: 4px; }
  40%            { opacity: 0.3; r: 6px; }
}

/* Rider animations — moving along roads */
.rider-1 { animation: riderMove1 6s linear infinite; }
.rider-2 { animation: riderMove2 7s linear infinite; }
.rider-3 { animation: riderMove3 5.5s linear infinite; }
.rider-4 { animation: riderMove4 8s linear 1s infinite; }
.rider-5 { animation: riderMove5 6.5s linear 2s infinite; }

/* Rider 1: right along y=80 from x=365 to x=80 */
@keyframes riderMove1 {
  0%   { transform: translate(365px, 80px); }
  50%  { transform: translate(50px, 80px); }
  50.1%{ transform: translate(365px, 80px); }
  100% { transform: translate(365px, 80px); }
}
/* Rider 2: down along x=175 from y=150 to y=290 */
@keyframes riderMove2 {
  0%   { transform: translate(175px, 145px); }
  50%  { transform: translate(175px, 330px); }
  50.1%{ transform: translate(175px, 145px); }
  100% { transform: translate(175px, 145px); }
}
/* Rider 3: left along y=220 from x=270 to x=35 */
@keyframes riderMove3 {
  0%   { transform: translate(270px, 220px); }
  50%  { transform: translate(35px, 220px); }
  50.1%{ transform: translate(270px, 220px); }
  100% { transform: translate(270px, 220px); }
}
/* Rider 4: up along x=270 from y=220 to y=35 */
@keyframes riderMove4 {
  0%   { transform: translate(270px, 220px); }
  50%  { transform: translate(270px, 35px); }
  50.1%{ transform: translate(270px, 220px); }
  100% { transform: translate(270px, 220px); }
}
/* Rider 5: diagonal — x=365,y=80 then turn right to x=440,y=80 then down y=150 */
@keyframes riderMove5 {
  0%   { transform: translate(365px, 80px); }
  30%  { transform: translate(410px, 80px); }
  60%  { transform: translate(410px, 220px); }
  70%  { transform: translate(270px, 220px); }
  70.1%{ transform: translate(365px, 80px); }
  100% { transform: translate(365px, 80px); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .delivery-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .delivery-map-wrap { max-width: 520px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
  .delivery-section { padding: 64px 24px; }
  .del-heading { font-size: 56px; }
  .del-stats { width: 100%; }
  .del-stat { flex: 1; padding: 14px 16px; }
}
@media (max-width: 480px) {
  .del-heading { font-size: 44px; }
  .hygiene-badge { flex-wrap: wrap; }
}