body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background:
    radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #f5f5dc 0%, #d2b48c 100%);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  padding-top: 84px; /* Account for fixed header */
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.05) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(160, 82, 45, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 25px 25px;
  pointer-events: none;
  z-index: -2;
}

#home,
#aanbod,
#formules,
#verhaal,
#locaties,
#sfeerbeelden,
#offerte {
  scroll-margin-top: 105px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #8B4513;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 2000;
}

.skip-link:focus {
  top: 6px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(248, 249, 250, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar .navbar-brand {
  color: #5a2d12;
  white-space: nowrap;
}

.navbar .container,
.navbar .navbar-collapse,
.navbar .navbar-nav {
  flex-wrap: nowrap;
}

.navbar .navbar-collapse {
  min-width: 0;
}

.navbar .navbar-nav {
  align-items: center;
}

.navbar .nav-link {
  color: #4a2a1a;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
  margin: 0 0.12rem;
  padding: 0.5rem 0.78rem;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #8B4513;
  background: rgba(139, 69, 19, 0.08);
  border-color: rgba(139, 69, 19, 0.12);
}

.navbar .nav-link.active,
.navbar .nav-link.show {
  color: #fff !important;
  background: linear-gradient(135deg, #5a2d12 0%, #8B4513 48%, #A0522D 100%);
  border-color: rgba(255, 232, 198, 0.9);
  box-shadow:
    0 8px 20px rgba(90, 45, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 0 3px rgba(139, 69, 19, 0.11);
  transform: translateY(-1px);
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: #ffe1af;
  box-shadow: 0 0 10px rgba(255, 225, 175, 0.55);
}


.navbar .btn-choco {
  white-space: nowrap;
}

.bg-chocolate {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #654321 100%);
  position: relative;
  overflow: hidden;
}

.bg-chocolate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.bg-chocolate::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(245, 245, 220, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

.logo {
  position: relative;
  display: inline-block;
}

.logo::after {
  content: '🍫';
  position: absolute;
  top: -5px;
  right: -20px;
  font-size: 1.2em;
  animation: drip 2s ease-in-out infinite;
}

@keyframes drip {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(5px) scale(1.1); opacity: 0.8; }
}

.social-links {
  position: relative;
  z-index: 2;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(45deg, #8B4513, #A0522D);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-icon i {
  font-size: 1.2rem;
  line-height: 1;
}

.social-icon:hover,
.social-icon:focus {
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 22px rgba(139, 69, 19, 0.35);
  background: linear-gradient(45deg, #654321, #8B4513, #A0522D);
}

.social-icon-footer {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(44, 24, 16, 0.72), rgba(44, 24, 16, 0.68)),
    url('images/chocolade.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem;
}

.hero-tag {
  display: inline-block;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 0;
  backdrop-filter: blur(6px);
}

.section-wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.section-wave-top {
  top: -1px;
}

.section-wave-bottom {
  bottom: -1px;
}

.description-section,
.features,
.formules-section,
.locations-section,
.gallery {
  background: #faf3e8;
  position: relative;
}

.section-title,
.section-title-light {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title {
  color: #5a2d12;
}

.section-title-light {
  color: #fff;
}

.text-choco-light {
  color: #f3ddc3;
}

.feature-icon,
.aanbod-icon,
.formule-icon {
  font-size: 2.5rem;
}

.card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border-radius: 20px 15px 25px 10px;
  border: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5dc 0%, #d2b48c 50%, #f5f5dc 100%);
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 0 2px rgba(139, 69, 19, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #8B4513, #A0522D, #654321, #8B4513);
  border-radius: 25px 20px 30px 15px;
  z-index: -1;
  opacity: 0.3;
}

.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 0 0 3px rgba(139, 69, 19, 0.2);
}

.card:hover::before {
  opacity: 0.5;
}

.btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(45deg, #8B4513, #A0522D);
  color: white;
  box-shadow:
    0 4px 15px rgba(139, 69, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(139, 69, 19, 0.5);
}

.btn-light {
  background: linear-gradient(135deg, #fff 0%, #f3e2cf 100%);
  color: #5a2d12;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #654321, #8B4513, #A0522D, #654321);
  border-radius: 52px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 8px 25px rgba(139, 69, 19, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 2px rgba(139, 69, 19, 0.7);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(0) scale(1.02);
}

.choco-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(160, 82, 45, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, #2c1810 0%, #654321 48%, #8B4513 100%);
}

.aanbod-card {
  min-height: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.aanbod-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}


.formules-section {
  background: #faf3e8;
  position: relative;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8B4513;
  background: rgba(139, 69, 19, 0.08);
  border: 1px solid rgba(139, 69, 19, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.formule-card,
.dessert-list-card,
.extras-card {
  border-radius: 24px 18px 30px 14px;
  border: 1px solid rgba(139, 69, 19, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 235, 220, 0.92) 100%);
  box-shadow:
    0 12px 35px rgba(139, 69, 19, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.formule-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 69, 19, 0.22);
}

.formule-card h3 {
  color: #5a2d12;
  font-weight: 800;
  margin: 0.75rem 0 0.35rem;
}

.formule-choice {
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.formule-price {
  color: #4a2a1a;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.formule-price strong {
  font-size: 1.8rem;
  color: #5a2d12;
}

.formule-card-highlight {
  border-color: rgba(160, 82, 45, 0.4);
  transform: translateY(-6px);
}

.formule-label {
  position: absolute;
  top: 1rem;
  right: -2.2rem;
  transform: rotate(35deg);
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 2.4rem;
  box-shadow: 0 6px 14px rgba(139, 69, 19, 0.28);
}

.dessert-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.dessert-pill-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(139, 69, 19, 0.14);
  color: #5a2d12;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 12px rgba(139, 69, 19, 0.08);
}

.extra-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(139, 69, 19, 0.12);
  color: #5a2d12;
  margin-bottom: 0.8rem;
}

.dessert-selector,
.extra-option-check {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem;
}

.dessert-choice-help {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffe1af;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.dessert-choice-help.is-complete {
  color: #fff;
  background: rgba(72, 141, 88, 0.32);
}

.dessert-option,
.extra-option-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 48px;
  color: #fff7ed;
  cursor: pointer;
}

.dessert-option {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.75rem 0.85rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.dessert-option:hover,
.extra-option-check:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 225, 175, 0.36);
}

.dessert-option input,
.extra-option-check input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #A0522D;
}

.dessert-option:has(input:checked),
.extra-option-check:has(input:checked) {
  background: rgba(255, 225, 175, 0.18);
  border-color: rgba(255, 225, 175, 0.7);
}

.dessert-option:has(input:disabled) {
  opacity: 0.48;
  cursor: not-allowed;
}

.verhaal-img {
  border-radius: 30px 15px 35px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  max-height: 430px;
  object-fit: cover;
}

.floating-chocolates {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 20;
  overflow: hidden;
}

.chocolate-piece {
  --chocolate-drift: 60px;
  --chocolate-scale: 1;
  --chocolate-spin: 360deg;
  position: absolute;
  top: 105vh;
  left: 0;
  font-size: clamp(1.15rem, 2vw, 2.15rem);
  opacity: 0;
  animation-name: chocolateFloatAcrossPage;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 6px 10px rgba(44, 24, 16, 0.22));
  will-change: transform, opacity;
}

@keyframes chocolateFloatAcrossPage {
  0% {
    transform: translate3d(0, 18vh, 0) rotate(0deg) scale(var(--chocolate-scale));
    opacity: 0;
  }
  10% {
    opacity: 0.34;
  }
  50% {
    opacity: 0.26;
  }
  88% {
    opacity: 0.32;
  }
  100% {
    transform: translate3d(var(--chocolate-drift), -135vh, 0) rotate(var(--chocolate-spin)) scale(var(--chocolate-scale));
    opacity: 0;
  }
}

html {
  scroll-behavior: smooth;
}

.gallery-carousel {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 18px 50px rgba(139, 69, 19, 0.24),
    0 0 0 3px rgba(139, 69, 19, 0.12);
  background: #2c1810;
}

.gallery-carousel .carousel-item img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.04);
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
  width: 12%;
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
  background-color: rgba(44, 24, 16, 0.65);
  border-radius: 50%;
  padding: 1.35rem;
  background-size: 58%;
}

.gallery-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.locations-section .list-group-item {
  border: none;
  border-radius: 15px 20px 10px 25px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 220, 0.8) 100%);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 15px rgba(139, 69, 19, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.locations-section .list-group-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8B4513, #A0522D, #654321, #8B4513);
  border-radius: 17px 22px 12px 27px;
  z-index: -1;
  opacity: 0.2;
}

.locations-section .list-group-item:hover {
  transform: translateX(15px) rotate(1deg);
  box-shadow:
    0 8px 25px rgba(139, 69, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.locations-section .list-group-item:hover::before {
  opacity: 0.4;
}

.location-search,
.form-control-choco {
  border-radius: 18px;
  border: 2px solid rgba(139, 69, 19, 0.18);
  padding: 0.85rem 1rem;
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.08);
}

.location-search:focus,
.form-control-choco:focus {
  border-color: #A0522D;
  box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.16);
}

.form-control-choco {
  background: rgba(255, 255, 255, 0.92);
}

footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(160, 82, 45, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

footer * {
  position: relative;
  z-index: 1;
}

footer .btn {
  border-radius: 20px 15px 25px 10px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #5a2d12;
  border: none;
  position: relative;
  overflow: hidden;
}

footer .btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8B4513, #A0522D, #654321, #8B4513);
  border-radius: 22px 17px 27px 12px;
  z-index: -1;
  opacity: 0.3;
}

footer .btn:hover::before {
  opacity: 0.5;
}

#adminNotification {
  font-size: 0.75em;
  padding: 0.25em 0.5em;
  border-radius: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 1199.98px) and (min-width: 992px) {
  .navbar .navbar-brand {
    font-size: 1.12rem !important;
  }

  .navbar .nav-link {
    padding: 0.45rem 0.5rem;
    margin: 0 0.04rem;
    font-size: 0.9rem;
  }

  .navbar .btn-choco {
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1rem;
  }

  .navbar .nav-link {
    margin: 0.2rem 0;
    text-align: center;
  }

  .navbar .nav-link.active {
    transform: none;
  }
  .navbar .btn-choco {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 72px; /* Smaller header on mobile */
  }

  #home,
  #aanbod,
  #formules,
  #verhaal,
  #locaties,
  #sfeerbeelden,
  #offerte {
    scroll-margin-top: 92px;
  }

  .floating-chocolates .chocolate-piece {
    font-size: 1.25rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .card:hover {
    transform: translateY(-3px) scale(1.01);
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .hero-section {
    min-height: 470px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .description-section h2 {
    font-size: 1.5rem;
  }

  .features .card {
    margin-bottom: 1rem;
  }

  .gallery-carousel .carousel-item img {
    height: 380px;
  }

  footer .row > div {
    text-align: center;
    margin-bottom: 2rem;
  }

  footer .nav {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.8rem;
  }

  .display-6 {
    font-size: 1.6rem;
  }

  .hero-section {
    padding: 3rem 1rem;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .gallery-carousel .carousel-item img {
    height: 290px;
  }
  .floating-chocolates {
    display: block;
  }

  .floating-chocolates .chocolate-piece {
    opacity: 0.22;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .card,
  .btn,
  .aanbod-card,
  .formule-card,
  .social-icon,
  .locations-section .list-group-item {
    transition: none !important;
  }

  .chocolate-piece {
    animation: none !important;
    display: none;
  }
}

/* Admin panel + kalender update */
.phone-input-group .country-code-select {
  max-width: 9.5rem;
  flex: 0 0 9.5rem;
}

.offerte-form-status {
  border-radius: 18px;
  border: none;
  box-shadow: 0 10px 22px rgba(44, 24, 16, 0.18);
}

.offerte-success-modal {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 225, 175, 0.5), transparent 38%),
    linear-gradient(135deg, #fff8ed 0%, #f6dfc5 100%);
  color: #4a2a1a;
  box-shadow: 0 30px 80px rgba(44, 24, 16, 0.28);
}

.success-chocolate-icon {
  width: 5.75rem;
  height: 5.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 16px 34px rgba(139, 69, 19, 0.18);
  overflow: hidden;
  border: 4px solid rgba(255, 225, 175, 0.95);
}

.success-chocolate-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-availability-calendar {
  border-radius: 22px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.public-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: #fff;
  text-transform: capitalize;
}

.public-calendar-header strong {
  text-align: center;
  flex: 1;
}

.public-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.public-calendar-weekday {
  color: #f3ddc3;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 850;
  padding-bottom: 0.15rem;
}

.public-calendar-day {
  min-height: 3.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.35rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.9);
  color: #4a2a1a;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.public-calendar-day small {
  font-size: 0.62rem;
  font-weight: 750;
}

.public-calendar-day.available {
  background: linear-gradient(135deg, #f5fff3 0%, #dff5d8 100%);
  color: #146c2e;
}

.public-calendar-day.available:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.48);
}

.public-calendar-day.unavailable {
  cursor: not-allowed;
  opacity: 0.82;
}

.public-calendar-day.prep {
  background: linear-gradient(135deg, #fff8e6 0%, #efd29e 100%);
  color: #6a4300;
}

.public-calendar-day.booked {
  background: linear-gradient(135deg, #ffe4e4 0%, #e7a6a6 100%);
  color: #842029;
}

.public-calendar-day.selected {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.35);
}

.public-calendar-empty {
  visibility: hidden;
}

.public-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
  color: #f3ddc3;
  font-size: 0.85rem;
}

.public-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.legend-dot {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  display: inline-block;
}

.legend-dot.available { background: #7bc96f; }
.legend-dot.prep { background: #e9bd63; }
.legend-dot.booked { background: #d46a6a; }

@media (max-width: 576px) {
  .public-availability-calendar {
    padding: 0.75rem;
  }

  .public-calendar-grid {
    gap: 0.22rem;
  }

  .public-calendar-day {
    min-height: 2.8rem;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .public-calendar-day small {
    display: none;
  }
}

body.admin-page {
  padding-top: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 225, 175, 0.18), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(139, 69, 19, 0.14), transparent 30%),
    linear-gradient(135deg, #faf3e8 0%, #e3c49f 100%);
}

body.admin-page::before {
  z-index: -1;
}

.admin-page .card,
.admin-panel,
.admin-stat-card,
.quote-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 69, 19, 0.12);
  box-shadow: 0 18px 44px rgba(90, 45, 18, 0.14);
  backdrop-filter: blur(10px);
}

.admin-page .card::before {
  display: none;
}

.admin-page .card:hover,
.admin-panel:hover,
.admin-stat-card:hover,
.quote-card:hover {
  transform: none;
}

.admin-navbar {
  background:
    linear-gradient(135deg, rgba(44, 24, 16, 0.96) 0%, rgba(101, 67, 33, 0.96) 52%, rgba(139, 69, 19, 0.96) 100%);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.25);
}

.admin-navbar .navbar-brand,
.admin-navbar .nav-link,
.admin-navbar .navbar-toggler {
  color: #fff !important;
}

.admin-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
}

.admin-nav-pills {
  gap: 0.35rem;
}

.admin-nav-pills .nav-link {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
}

.admin-nav-pills .nav-link:hover,
.admin-nav-pills .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.admin-shell {
  max-width: 1520px;
}

.admin-kicker {
  color: #8B4513;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.admin-title {
  color: #4a2a1a;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.admin-view-header,
.admin-panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-panel-header {
  align-items: center;
  margin-bottom: 1rem;
}

.admin-filter-select {
  max-width: 260px;
}

.admin-panel {
  padding: 1.25rem;
}

.admin-stat-card {
  padding: 1.2rem;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.admin-stat-card span {
  color: #7a5a42;
  font-weight: 700;
  font-size: 0.92rem;
}

.admin-stat-card strong {
  color: #4a2a1a;
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin: 0.4rem 0;
}

.admin-stat-card small {
  color: #8b735f;
}

.btn-outline-choco {
  color: #5a2d12;
  border-color: rgba(139, 69, 19, 0.35);
  background: rgba(255, 255, 255, 0.45);
}

.btn-outline-choco:hover,
.btn-outline-choco:focus {
  color: #fff;
  background: #8B4513;
  border-color: #8B4513;
}

.admin-list {
  display: grid;
  gap: 0.85rem;
}

.admin-list.compact {
  gap: 0.65rem;
}

.admin-mini-item,
.booking-list-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(250, 243, 232, 0.9);
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.admin-mini-item > div,
.booking-list-item > div:first-child {
  display: grid;
  gap: 0.15rem;
}

.admin-mini-item span,
.booking-list-item span {
  color: #7a5a42;
  font-size: 0.9rem;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 800;
  background: #ead6bd;
  color: #5a2d12;
  white-space: nowrap;
}

.admin-badge.nieuw,
.admin-badge.unread {
  background: #ffe8a3;
  color: #6f4d00;
}

.admin-badge.bevestigd,
.admin-badge.planned {
  background: #d5f3dc;
  color: #146c2e;
}

.admin-badge.afgewezen,
.admin-badge.cancelled {
  background: #f8d7da;
  color: #842029;
}

.admin-badge.completed {
  background: #d1e7dd;
  color: #0f5132;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 1.25rem;
}

.quote-card {
  padding: 1.25rem;
}

.quote-card.bevestigd {
  border-color: rgba(20, 108, 46, 0.25);
}

.quote-card.afgewezen {
  opacity: 0.78;
}

.quote-card-header,
.quote-actions,
.quote-contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.quote-contact-row {
  margin: 1rem 0;
  justify-content: flex-start;
}

.quote-contact-row a {
  color: #5a2d12;
  text-decoration: none;
  font-weight: 700;
}

.quote-details-box,
.quote-message {
  border-radius: 18px;
  padding: 1rem;
  background: rgba(250, 243, 232, 0.88);
  border: 1px solid rgba(139, 69, 19, 0.09);
  margin-bottom: 1rem;
}

.quote-message p {
  margin: 0.35rem 0 0;
  white-space: normal;
}

.admin-detail-list {
  padding-left: 1.1rem;
}

.quote-amount-input {
  min-width: 210px;
  max-width: 260px;
}

.calendar-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 999px;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(139, 69, 19, 0.1);
}

#calendarMonthLabel {
  min-width: 180px;
  text-align: center;
  color: #4a2a1a;
  text-transform: capitalize;
}

.admin-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}

.calendar-weekday {
  text-align: center;
  color: #7a5a42;
  font-weight: 850;
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.calendar-day {
  min-height: 112px;
  border: 1px solid rgba(139, 69, 19, 0.11);
  border-radius: 18px;
  padding: 0.7rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  color: #4a2a1a;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calendar-day:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(90, 45, 18, 0.12);
}

.calendar-day-empty {
  background: transparent;
  border: none;
  box-shadow: none;
}

.calendar-day.today {
  outline: 3px solid rgba(139, 69, 19, 0.18);
}

.calendar-day.past {
  opacity: 0.55;
}

.calendar-day.available .calendar-free {
  color: #146c2e;
  font-size: 0.82rem;
  font-weight: 800;
}

.calendar-day.blocked {
  background: linear-gradient(135deg, #fff2e2 0%, #f1d5b8 100%);
  border-color: rgba(139, 69, 19, 0.28);
}

.calendar-date-number {
  font-size: 1.05rem;
  font-weight: 900;
}

.calendar-booking-dot {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.22rem 0.45rem;
  font-size: 0.74rem;
  font-weight: 750;
  color: #fff;
  background: #8B4513;
}

.calendar-booking-dot.holiday {
  background: #0d6efd;
}

.calendar-booking-dot.logistics {
  background: #6c757d;
}

.calendar-booking-dot.blocked {
  background: #842029;
}

.booking-actions {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-table thead th {
  color: #5a2d12;
  border-bottom-color: rgba(139, 69, 19, 0.2);
}

.admin-table tbody td {
  border-bottom-color: rgba(139, 69, 19, 0.08);
}

.admin-empty {
  border-radius: 18px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  color: #7a5a42;
  text-align: center;
  border: 1px dashed rgba(139, 69, 19, 0.24);
}

.small-empty {
  padding: 0.9rem;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .admin-view-header,
  .admin-panel-header {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-filter-select {
    max-width: 100%;
  }

  .admin-calendar-grid {
    gap: 0.35rem;
  }

  .calendar-day {
    min-height: 92px;
    border-radius: 14px;
    padding: 0.5rem;
  }
}

@media (max-width: 680px) {
  .phone-input-group {
    flex-direction: column;
  }

  .phone-input-group .country-code-select {
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
  }

  .admin-calendar-grid {
    grid-template-columns: repeat(7, minmax(42px, 1fr));
    overflow-x: auto;
  }

  .calendar-day {
    min-height: 76px;
    padding: 0.35rem;
  }

  .calendar-booking-dot,
  .calendar-free {
    display: none;
  }

  .quote-actions,
  .booking-list-item,
  .admin-mini-item {
    flex-direction: column;
    align-items: stretch;
  }

  .quote-amount-input {
    max-width: 100%;
  }
}

/* Clean admin update: interne offertevelden, betaling en klikbare kalenderdetails */
.quote-admin-fields {
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 69, 19, 0.12);
  margin-bottom: 0.85rem;
}

.admin-paid-check {
  min-height: 2.15rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 14px;
  background: rgba(250, 243, 232, 0.92);
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.admin-badge.paid {
  background: #d1e7dd;
  color: #0f5132;
}

.admin-badge.unpaid {
  background: #fff3cd;
  color: #664d03;
}

.calendar-day.selected {
  outline: 3px solid rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.78), 0 14px 26px rgba(90, 45, 18, 0.16);
}

.calendar-detail-card {
  border-radius: 18px;
  padding: 1rem;
  background: rgba(250, 243, 232, 0.94);
  border: 1px solid rgba(139, 69, 19, 0.12);
}

.calendar-detail-card span {
  color: #5a4637;
}

.calendar-detail-lines {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.calendar-detail-lines a {
  color: #5a2d12;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 680px) {
  .quote-admin-fields .row > div {
    margin-bottom: 0.5rem;
  }
}

/* Mobile + reservatiebeheer upgrade 2026-04-30 */
:root {
  --admin-glass: rgba(255, 252, 246, 0.86);
  --admin-border-strong: rgba(139, 69, 19, 0.18);
}

.phone-input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.phone-input-group .country-code-select {
  min-width: 9.5rem;
}

.phone-input-group > .form-control,
.phone-input-group > .form-select {
  min-height: 3.1rem;
}

.admin-toolbar {
  width: min(100%, 620px);
}

.admin-search-input {
  min-width: 220px;
}

.booking-clickable {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.booking-clickable:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 69, 19, 0.28);
  box-shadow: 0 18px 38px rgba(71, 39, 20, 0.14);
}

button.admin-mini-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(139, 69, 19, 0.1);
  font: inherit;
  color: inherit;
}

.booking-open-hint {
  font-size: 0.75rem;
  font-weight: 800;
  color: #8b4513 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-timeline {
  display: grid;
  gap: 0.85rem;
}

.booking-timeline-item {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(139, 69, 19, 0.11);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.94), rgba(250, 239, 222, 0.78));
}

.booking-timeline-item.cancelled {
  opacity: 0.72;
  background: rgba(255, 255, 255, 0.62);
}

.booking-timeline-date strong,
.booking-timeline-date span,
.booking-timeline-meta span {
  display: block;
}

.booking-timeline-date strong {
  color: #4a2a1a;
  line-height: 1.25;
}

.booking-timeline-date span,
.booking-timeline-meta span {
  color: #7b6756;
  font-size: 0.9rem;
}

.booking-timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.calendar-detail-card.cancelled {
  opacity: 0.72;
}

.admin-modal-card {
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 216, 154, 0.32), transparent 34%),
    linear-gradient(135deg, #fffaf2 0%, #f6e8d2 100%);
  color: #4a2a1a;
  box-shadow: 0 30px 90px rgba(44, 24, 16, 0.28);
}

.booking-edit-modal .form-control,
.booking-edit-modal .form-select,
.admin-page .form-control,
.admin-page .form-select {
  border-radius: 14px;
  border-color: rgba(139, 69, 19, 0.16);
}

.booking-edit-actions {
  gap: 0.5rem;
}

/* extra polish publieke website */
.hero-section,
.offerte-section {
  overflow-x: hidden;
}

.hero-content .btn,
.btn-choco,
.btn-outline-choco {
  box-shadow: 0 12px 30px rgba(90, 45, 18, 0.16);
}

.card,
.aanbod-card,
.formule-card {
  backface-visibility: hidden;
}

.offerte-section .card,
.formule-card,
.aanbod-card {
  border-radius: 26px;
}

@media (max-width: 768px) {
  .booking-timeline-item {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .admin-toolbar,
  .admin-search-input {
    width: 100%;
    min-width: 0;
  }

  .booking-edit-actions .btn {
    width: 100%;
  }

  .hero-content,
  .offerte-section .card-body {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .phone-input-group {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .phone-input-group .country-code-select,
  .phone-input-group > .form-control,
  .phone-input-group > .form-select {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    margin-left: 0 !important;
    border-radius: 16px !important;
  }

  .phone-input-group > .form-control:focus,
  .phone-input-group > .form-select:focus {
    z-index: 3;
  }

  .admin-calendar-grid {
    min-width: 0;
    grid-template-columns: repeat(7, minmax(38px, 1fr));
  }

  .calendar-day {
    min-height: 58px;
    border-radius: 12px;
  }

  .calendar-date-number {
    font-size: 0.9rem;
  }

  .admin-shell {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
}

@media (max-width: 420px) {
  .public-calendar-grid,
  .admin-calendar-grid {
    gap: 0.25rem;
  }

  .public-calendar-day,
  .calendar-day {
    min-width: 0;
    padding: 0.25rem;
  }

  .btn,
  .form-control,
  .form-select {
    font-size: 0.98rem;
  }
}

/* V3 polish: gestroomlijnde site, admin-settings en adresafstand */
.nav-cta {
  white-space: nowrap;
}

.nav-phone {
  color: #5a2d12;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.94rem;
}

.nav-phone:hover,
.hero-contact a,
.footer-phone a {
  color: #8B4513;
  text-decoration: underline;
}

.hero-actions .btn {
  min-width: 190px;
}

.hero-contact {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-contact a {
  color: #fff;
}

.process-card {
  border-radius: 30px;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 224, 177, 0.72), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 231, 205, 0.88));
  box-shadow: 0 24px 55px rgba(90, 45, 18, 0.14);
  border: 1px solid rgba(139, 69, 19, 0.13);
}

.process-card ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: #5a4637;
  font-weight: 650;
}

.footer-phone a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

.settings-list {
  display: grid;
  gap: 0.85rem;
}

.settings-toggle {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 69, 19, 0.12);
}

.settings-toggle input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: #8B4513;
}

.settings-toggle strong,
.settings-toggle small {
  display: block;
}

.settings-toggle small {
  color: #7b6756;
  margin-top: 0.2rem;
}

.price-advice-list {
  display: grid;
  gap: 0.75rem;
}

.price-advice-list > div,
.admin-help-grid > div {
  border-radius: 18px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.price-advice-list strong,
.price-advice-list span,
.price-advice-list b,
.admin-help-grid strong,
.admin-help-grid span {
  display: block;
}

.price-advice-list b {
  color: #8B4513;
  margin-top: 0.2rem;
}

.admin-help-grid span {
  color: #6d5a48;
  margin-top: 0.35rem;
  font-size: 0.92rem;
}

.distance-info {
  min-height: 1.35rem;
}

.booking-timeline-item:hover .booking-open-hint,
.booking-list-item:hover .booking-open-hint,
.admin-mini-item:hover .booking-open-hint {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .nav-cta {
    align-items: stretch !important;
    padding-top: 0.85rem;
  }

  .nav-phone {
    display: block;
    padding: 0.6rem 0;
  }
}

@media (max-width: 576px) {
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .process-card {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .offerte-form .row > [class*="col-"] {
    margin-bottom: 0.25rem;
  }

  .phone-input-group {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }

  .phone-input-group .country-code-select,
  .phone-input-group input[type="tel"] {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    border-radius: 18px !important;
  }
}

/* V4: hidden admin, smoother chocolate polish and narrow mobile navigation */
.hero-section::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 226, 180, 0.22), transparent 28%),
    radial-gradient(ellipse at 80% 18%, rgba(115, 54, 20, 0.38), transparent 32%),
    conic-gradient(from 190deg at 50% 50%, rgba(255,255,255,0.08), rgba(92,42,15,0.18), rgba(255,225,178,0.11), rgba(92,42,15,0.18), rgba(255,255,255,0.08));
  mix-blend-mode: soft-light;
  opacity: 0.75;
  animation: chocolateSwirl 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes chocolateSwirl {
  from { transform: rotate(-2deg) scale(1.02); }
  to { transform: rotate(3deg) scale(1.08); }
}

.btn-choco,
.btn-outline-choco,
.hero-actions .btn,
.offerte-card,
.formule-card,
.card,
.admin-panel,
.admin-stat-card {
  transform: translateZ(0);
}

.btn-choco:hover,
.btn-outline-choco:hover,
.hero-actions .btn:hover {
  box-shadow: 0 18px 42px rgba(90, 45, 18, 0.26);
}

.public-calendar-day.prep,
.public-calendar-day.booked {
  background: linear-gradient(135deg, #ffe4e4 0%, #e7a6a6 100%);
  color: #842029;
}

@media (max-width: 576px) {
  body {
    padding-top: 105px;
  }

  .navbar .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .navbar .navbar-brand {
    width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    font-size: 1.05rem !important;
  }

  .navbar .navbar-toggler {
    align-self: center;
    margin: 0 auto;
  }

  .navbar .navbar-collapse {
    width: 100%;
    flex-basis: 100%;
  }

  .navbar .navbar-nav {
    width: 100%;
    align-items: stretch;
  }

  .navbar .nav-link {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    white-space: normal;
  }

  .nav-phone {
    text-align: center;
  }
}
