/*
Theme Name: Pizza Nino
Theme URI: https://www.pizza-nino.com
Author: Pizza Nino
Author URI: https://www.pizza-nino.com
Description: Thème moderne Pizza Nino aux couleurs de l'Italie, compatible Elementor. Design élégant avec les couleurs vert, blanc et rouge du drapeau italien.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pizza-nino
Tags: restaurant, pizza, italian, elementor, full-site-editing, custom-menu, custom-logo, featured-images
*/

/* ===== CSS VARIABLES ===== */
:root {
  --verde: #008C45;
  --verde-dark: #006B35;
  --verde-light: #00A854;
  --bianco: #FEFCF3;
  --bianco-warm: #FFF8E7;
  --rosso: #CD212A;
  --rosso-dark: #A31920;
  --rosso-light: #E8353E;
  --nero: #000000;
  --oro: #C5A258;
  --oro-light: #D4B872;
  --grigio: #8A8A85;
  --grigio-light: #E8E6DE;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bianco);
  color: var(--nero);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ===== ITALIAN FLAG STRIPE ===== */
.pn-flag-stripe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  display: flex;
  z-index: 99999;
}
.pn-flag-stripe span:nth-child(1) { flex: 1; background: var(--verde); }
.pn-flag-stripe span:nth-child(2) { flex: 1; background: #fff; }
.pn-flag-stripe span:nth-child(3) { flex: 1; background: var(--rosso); }

/* Italian Flag Stripe Bottom */
.pn-flag-stripe-bottom {
  width: 100%;
  height: 4px;
  display: flex;
}
.pn-flag-stripe-bottom span:nth-child(1) { flex: 1; background: var(--verde); }
.pn-flag-stripe-bottom span:nth-child(2) { flex: 1; background: #fff; }
.pn-flag-stripe-bottom span:nth-child(3) { flex: 1; background: var(--rosso); }


/* ===== HEADER / NAVIGATION ===== */
.pn-header {
  position: fixed;
  top: 4px;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 0 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pn-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.pn-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.pn-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.pn-logo span { color: var(--rosso); }

/* Custom logo image */
.pn-logo .custom-logo-link,
.custom-logo-link {
  display: flex;
  align-items: center;
}
.pn-logo .custom-logo,
.custom-logo {
  height: 60px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .custom-logo {
    height: 50px;
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .custom-logo {
    height: 40px;
    max-width: 200px;
  }
}


/* Navigation */
.pn-nav { display: flex; gap: 36px; list-style: none; }
.pn-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}
.pn-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rosso);
  transition: width 0.3s;
}
.pn-nav a:hover { color: #fff; }
.pn-nav a:hover::after { width: 100%; }
.pn-nav-cta {
  background: var(--rosso) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.pn-nav-cta::after { display: none !important; }
.pn-nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(205,33,42,0.4);
}

/* Hamburger */
.pn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10001;
}
.pn-hamburger span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  display: block;
}

/* ===== FOOTER ===== */
.pn-footer {
  background: #000000;
  color: rgba(255,255,255,0.35);
  padding: 40px;
}
.pn-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.pn-footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.pn-footer-logo span { color: var(--rosso); }
.pn-footer p { font-size: 0.8rem; }
.pn-footer-social { display: flex; gap: 12px; }
.pn-footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  transition: all 0.3s;
}
.pn-footer-social a:hover {
  background: var(--rosso);
  color: #fff;
}

/* ===== BUTTONS ===== */
.pn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: pointer;
  border: none;
}
.pn-btn-primary {
  background: var(--rosso);
  color: #fff;
  box-shadow: 0 4px 24px rgba(205,33,42,0.35);
}
.pn-btn-primary:hover {
  background: var(--rosso-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(205,33,42,0.45);
}
.pn-btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.pn-btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.pn-btn-green {
  background: var(--verde);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,140,69,0.3);
}
.pn-btn-green:hover {
  background: var(--verde-dark);
  transform: translateY(-2px);
}

/* ===== ELEMENTOR OVERRIDES ===== */
.elementor-page .pn-header { display: block; }
.elementor-page .pn-footer { display: block; }
body.elementor-default, body.elementor-template-canvas {
  background: var(--bianco);
}

/* Elementor section backgrounds */
.pn-section-dark {
  background: var(--nero) !important;
  color: #fff;
}
.pn-section-green {
  background: linear-gradient(135deg, var(--verde-dark) 0%, var(--verde) 50%, var(--verde-light) 100%) !important;
  color: #fff;
}
.pn-section-warm {
  background: var(--bianco-warm) !important;
}

/* ===== SCROLL ANIMATIONS ===== */
.pn-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pn-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
  .pn-header { padding: 0 20px; }

  /* Elementor 2-column sections: reduce gap */
  .elementor-section .elementor-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* --- Tablet portrait & small tablets --- */
@media (max-width: 768px) {
  /* Mobile navigation sidebar */
  .pn-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s;
    z-index: 10000;
  }
  .pn-nav.open { right: 0; }
  .pn-hamburger { display: flex; }

  /* Header */
  .pn-header { padding: 0 16px; }
  .pn-header-inner { height: 64px; }
  .pn-logo { font-size: 1.5rem; }

  /* Footer */
  .pn-footer { padding: 30px 16px; }
  .pn-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .pn-footer p { font-size: 0.78rem; }

  /* Buttons */
  .pn-btn {
    padding: 14px 28px;
    font-size: 0.82rem;
  }

  /* Force Elementor 2-column sections to stack on mobile */
  .elementor-section .elementor-container {
    flex-wrap: wrap !important;
  }
  .elementor-section .elementor-container > .elementor-column {
    width: 100% !important;
    flex-basis: 100% !important;
  }

  /* Elementor sections: reduce padding on mobile */
  .elementor-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .elementor-section > .elementor-container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Elementor headings: scale down */
  .elementor-heading-title.elementor-size-h1,
  .elementor-heading-title.elementor-size-default {
    font-size: clamp(1.8rem, 8vw, 4.5rem) !important;
    line-height: 1.15 !important;
  }

  /* Hero section: reduce height on mobile */
  .elementor-section[data-settings*="min-height"] {
    min-height: 60vh !important;
  }

  /* Gallery strip: horizontal scroll on mobile */
  .pn-gallery-strip .elementor-container {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .pn-gallery-strip .elementor-column {
    min-width: 60vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
  }

  /* About section image stack */
  .elementor-section .elementor-container > .elementor-column:first-child img {
    border-radius: 16px;
    margin-bottom: 20px;
  }

  /* Values grid: 2 columns on tablet, will go 1 col on smaller */
  [style*="grid-template-columns: 1fr 1fr"] {
    gap: 16px !important;
  }

  /* Delivery features grid */
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Hours cards */
  [style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Contact section columns stack */
  .elementor-section .elementor-container > .elementor-column iframe {
    height: 300px !important;
    border-radius: 16px !important;
  }
}

/* --- Mobile phones --- */
@media (max-width: 480px) {
  /* Header */
  .pn-header { padding: 0 12px; }
  .pn-header-inner { height: 56px; }
  .pn-logo { font-size: 1.3rem; }

  /* Navigation sidebar: wider on small phones */
  .pn-nav { width: 85%; gap: 28px; }
  .pn-nav a { font-size: 0.95rem; }

  /* Buttons */
  .pn-btn {
    padding: 12px 24px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
  }

  /* Footer */
  .pn-footer { padding: 24px 12px; }
  .pn-footer-logo { font-size: 1.1rem; }

  /* Elementor sections padding */
  .elementor-section {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* Headings scale */
  .elementor-heading-title.elementor-size-h1,
  .elementor-heading-title.elementor-size-default {
    font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
  }

  /* Hero min-height reduce more */
  .elementor-section[data-settings*="min-height"] {
    min-height: 50vh !important;
  }

  /* Values grid: single column */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* About image floating boxes: hide on very small screens */
  [style*="position:absolute"][style*="border-radius:16px"] {
    display: none !important;
  }

  /* Pizza menu items: prices smaller */
  [style*="font-family:'Playfair Display'"][style*="color:#C5A258"] {
    font-size: 0.9rem !important;
  }

  /* Pizza name text: slightly smaller */
  [style*="font-size:1.05rem"][style*="color:rgba(255,255,255,.9)"] {
    font-size: 0.92rem !important;
  }

  /* Pizza description: smaller */
  [style*="font-size:.8rem"][style*="color:rgba(255,255,255,.35)"] {
    font-size: 0.72rem !important;
  }

  /* Category headers: smaller */
  [style*="font-size:1.65rem"][style*="color:#FEFCF3"] {
    font-size: 1.3rem !important;
  }

  /* Size labels */
  [style*="letter-spacing:2.5px"][style*="color:#C5A258"] {
    font-size: 0.62rem !important;
    letter-spacing: 1.5px !important;
  }

  /* CTA buttons in inline styles */
  a[style*="border-radius:60px"][style*="background:#CD212A"] {
    padding: 12px 24px !important;
    font-size: 0.78rem !important;
  }

  /* Google Maps iframe */
  iframe[src*="google.com/maps"] {
    height: 250px !important;
  }
}

/* --- Extra small phones (iPhone SE, etc.) --- */
@media (max-width: 360px) {
  .pn-logo { font-size: 1.15rem; }
  .pn-header-inner { height: 50px; }

  /* Stack prices vertically on very small screens if needed */
  .elementor-section {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* Pizza items: reduce dotted line space */
  [style*="border-bottom:1px dotted"] {
    min-width: 15px !important;
    margin: 0 6px !important;
  }
}

/* ===== WORDPRESS DEFAULTS ===== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--grigio); }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Footer logo image */
.pn-footer-logo .custom-logo-link {
  display: inline-block;
}
.pn-footer-logo .custom-logo {
  height: 50px;
  width: auto;
  max-width: 250px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.pn-footer-logo .custom-logo:hover {
  opacity: 1;
}

/* Header logo alignment */
.pn-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.pn-logo .custom-logo-link,
.pn-logo a.custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}
.custom-logo-link {
  display: flex !important;
  align-items: center;
}

/* Logo left on mobile */
@media (max-width: 768px) {
  .pn-header-inner {
    justify-content: flex-start;
  }
  .pn-logo {
    flex: 1;
    justify-content: flex-start;
  }
  .pn-hamburger {
    margin-left: auto;
  }
}

/* Force logo left all screens */
.pn-header-inner {
  display: flex !important;
  flex-direction: row !important;
}
.pn-logo {
  order: -1 !important;
  margin-right: auto !important;
  flex-shrink: 0;
}
.pn-nav {
  order: 1;
}
.pn-hamburger {
  order: 2 !important;
  margin-left: auto !important;
}
.pn-logo .custom-logo-link img,
.pn-logo img.custom-logo {
  display: block;
}

/* Sticky header */
.pn-el-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.4s ease;
}

/* Scrolled state - added via JS */
.pn-el-header.scrolled {
    background: rgba(0,0,0,0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Nav link hover effect */
.pn-el-header .hfe-nav-menu a:hover {
    color: #fff !important;
}

/* CTA button style for last menu item */
.pn-el-header .hfe-nav-menu li:last-child a {
    background: #CD212A !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pn-el-header .hfe-nav-menu li:last-child a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(205,33,42,0.4);
}

/* Mobile hamburger styling */
@media (max-width: 1024px) {
    .pn-el-header .hfe-nav-menu__toggle {
        color: #fff;
    }
    .pn-el-header .hfe-nav-menu__layout-horizontal {
        background: #000;
    }
}


@media (max-width: 480px) {
    .pn-pizza-grid > .elementor-container > .elementor-column,
    .pn-pizza-grid > .elementor-container > .elementor-column.elementor-col-25 {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
}

/* Pizza grid: mobile 2 per row + alignment */
@media (max-width: 767px) {
    .pn-pizza-grid > .elementor-container {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    .pn-pizza-grid > .elementor-container > .elementor-column,
    .pn-pizza-grid > .elementor-container > .elementor-column.elementor-col-25,
    .pn-pizza-grid .elementor-row > .elementor-column {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
    .pn-pizza-grid .elementor-widget-image img {
        width: 100% !important;
        height: auto !important;
    }
    .pn-pizza-grid .elementor-widget-heading .elementor-heading-title {
        font-size: 0.9rem !important;
    }
    .pn-pizza-grid .elementor-widget-text-editor {
        font-size: 0.7rem !important;
    }
    .pn-pizza-grid .elementor-column .elementor-widget-wrap {
        padding: 0 6px !important;
    }
}

/* ===== PIZZA PHOTO GRID ===== */
.pn-photo-grid-section {
  background: #000000;
  padding: 60px 20px 80px;
}
.pn-photo-grid-header {
  text-align: center;
  margin-bottom: 48px;
}
.pn-photo-grid-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.pn-flag-line-green {
  width: 50px;
  height: 2px;
  background: #008C45;
  display: inline-block;
}
.pn-flag-line-red {
  width: 50px;
  height: 2px;
  background: #CD212A;
  display: inline-block;
}
.pn-photo-grid-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 900;
  color: #FEFCF3;
  line-height: 1.1;
}
.pn-photo-grid-title em {
  color: #CD212A;
  font-style: italic;
}
.pn-pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.pn-pcard {
  background: #111111;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}
.pn-pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border-color: rgba(197,162,88,0.3);
}
.pn-pcard-img {
  position: relative;
  overflow: hidden;
}
.pn-pcard-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pn-pcard:hover .pn-pcard-img img {
  transform: scale(1.08);
}
.pn-pcard-info {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pn-pcard-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FEFCF3;
  margin: 0 0 6px 0;
  text-align: center;
}
.pn-pcard-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.4;
  margin: 0 0 16px 0;
  text-align: center;
}
.pn-pcard-prices {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
  margin-top: auto;
}
.pn-pcard-pr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pn-pcard-pr .pn-pr-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.pn-pcard-pr .pn-pr-val {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .pn-pgrid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pn-photo-grid-title { font-size: 36px; }
}
@media (max-width: 768px) {
  .pn-pgrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pn-photo-grid-section { padding: 40px 14px 60px; }
  .pn-photo-grid-title { font-size: 30px; }
  .pn-pcard { border-radius: 12px; }
  .pn-pcard-info { padding: 14px 10px; text-align: center; }
  .pn-pcard-name { font-size: 1.05rem; text-align: center; }
  .pn-pcard-desc { font-size: 0.75rem; min-height: auto; text-align: center; }
  .pn-pcard-prices { justify-content: center; gap: 20px; }
  .pn-pcard-pr { align-items: center; text-align: center; }
  .pn-pcard-pr .pn-pr-val { font-size: 1.05rem; }
  .pn-pcard-pr .pn-pr-label { font-size: 0.6rem; letter-spacing: 1.5px; }
}
@media (max-width: 480px) {
  .pn-pgrid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pn-photo-grid-section { padding: 24px 8px 40px; }
  .pn-photo-grid-header { margin-bottom: 28px; }
  .pn-photo-grid-title { font-size: 22px; }
  .pn-photo-grid-label { font-size: 0.62rem; letter-spacing: 2px; }
  .pn-pcard { border-radius: 10px; }
  .pn-pcard-info { padding: 10px 8px; text-align: center; }
  .pn-pcard-name { font-size: 0.92rem; text-align: center; margin-bottom: 4px; }
  .pn-pcard-desc { font-size: 0.68rem; text-align: center; margin-bottom: 10px; min-height: auto; }
  .pn-pcard-prices { justify-content: center; gap: 16px; padding-top: 10px; }
  .pn-pcard-pr { align-items: center; text-align: center; }
  .pn-pcard-pr .pn-pr-val { font-size: 0.95rem; }
  .pn-pcard-pr .pn-pr-label { font-size: 0.55rem; letter-spacing: 1px; }
}




/* ===== SUPPLEMENTS SECTION ===== */
.pn-supplements {
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 20px;
}
.pn-supplements-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 36px;
}
.pn-suppl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pn-suppl-item {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.pn-suppl-item:hover {
  border-color: rgba(255,255,255,0.15);
}
.pn-suppl-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FEFCF3;
  margin-bottom: 10px;
}
.pn-suppl-prices {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.pn-suppl-sep {
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
}
.pn-suppl-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.pn-suppl-notes {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pn-suppl-notes p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.6;
  margin: 4px 0;
  font-style: italic;
}
@media (max-width: 768px) {
  .pn-suppl-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pn-suppl-name { font-size: 0.95rem; }
  .pn-suppl-prices { font-size: 1rem; }
}
@media (max-width: 480px) {
  .pn-suppl-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pn-supplements { margin-top: 40px; }
  .pn-supplements-header { font-size: 0.78rem; }
  .pn-suppl-item { padding: 14px 10px; }
  .pn-suppl-name { font-size: 0.85rem; }
  .pn-suppl-prices { font-size: 0.92rem; }
  .pn-suppl-note { font-size: 0.6rem; }
  .pn-suppl-notes p { font-size: 0.82rem; }
}

/* ===== BOISSONS SECTION ===== */
.pn-boissons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pn-boisson-category {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px 20px;
}
.pn-boisson-cat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pn-boisson-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pn-boisson-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pn-boisson-item:last-child {
  border-bottom: none;
}
.pn-boisson-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.pn-boisson-name small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
}
.pn-boisson-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  white-space: nowrap;
  margin-left: 12px;
}
/* Desserts grid - center single item */
.pn-desserts-grid {
  display: flex;
  justify-content: center;
}
.pn-desserts-grid .pn-suppl-item {
  min-width: 200px;
}
@media (max-width: 768px) {
  .pn-boissons-grid { grid-template-columns: 1fr; gap: 16px; }
}
/* ===== INFO BANNER (Horaires + Livraison) ===== */
@media (max-width: 768px) {
  .pn-info-grid {
    grid-template-columns: 1fr !important;
  }
  .pn-info-banner {
    margin-top: 40px !important;
    padding: 0 10px !important;
  }
  .pn-info-banner > div[style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: stretch !important;
  }
  .pn-info-banner > div[style*="display:flex"] > div[style*="width:1px"] {
    width: 100% !important;
    height: 1px !important;
  }
}

/* ===== PIZZA PLACEHOLDER (photo coming soon) ===== */
.pn-pcard-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pn-pcard-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pn-pcard-soon span {
  font-size: 0.75rem;
}
/* ===== HIDE OLD ELEMENTOR PIZZA GRID ===== */
.elementor-section.pn-pizza-grid {
  display: none !important;
}

/* Hide Voir la carte on mobile */
@media (max-width: 768px) {
  .pn-hide-mobile { display: none !important; }
}
