/* ===================
   CSS RESET & "VINTAGE RETRO" BASE
   =================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s,
samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul,
li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  min-height: 100vh;
  background: #F3ECDA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #241c15;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #B9562F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E53935;
  text-decoration: underline;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 6px;
}
strong, b {
  font-weight: bold;
}

/* ===============
   BRAND PALETTE – Retro Inspired
   =============== */
:root {
  --primary: #1A237E;
  --secondary: #E53935;
  --accent: #F8F9FA;
  --retro-bg: #F3ECDA;
  --retro-gold: #FFD567;
  --retro-brown: #664229;
  --retro-navy: #223564;
  --retro-orange: #E89846;
  --retro-green: #62967B;
  --retro-red: #DE575B;
}

/* ==============
   TYPOGRAPHY – Vintage Retro
   ============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');
h1, .h1 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  text-shadow: 1px 3px 0 var(--retro-gold), 0 1px 5px #ccb97455;
}
h2, .h2 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 2rem;
  color: var(--retro-brown);
  margin-bottom: 20px;
  letter-spacing: 0.015em;
}
h3, .h3 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 1.3rem;
  color: var(--retro-navy);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
h4, .h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  color: var(--retro-brown);
}
p, ul, ol {
  font-size: 1rem;
  color: #241c15;
}
blockquote {
  font-family: 'Roboto', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--retro-navy);
  border-left: 5px solid var(--retro-gold);
  background: #fff7eb;
  padding: 16px 20px;
  margin: 0 0 16px 0;
}

/* ==============
   UTILITIES
   ============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

section {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 6px 20px 0 #49382114, 0 1.5px 0 #ecd9c3 inset;
}

/* ==============
    RETRO PATTERNS + SHADOWS
   ============== */
section {
  background: repeating-linear-gradient(-45deg, #fff, #fff 38px, #fff7eb 40px, #fff7eb 78px);
  border: 1.5px solid #edd2a6;
}

/* ==============
   HEADER/NAVIGATION
   ============== */
header {
  background: linear-gradient(90deg, #FFD567 20%, #E89846 90%);
  padding: 0 0 9px 0;
  border-bottom: 5px solid var(--retro-brown);
  box-shadow: 0 1.5px 0 #fffbe1 inset;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 19px;
  padding-bottom: 8px;
}
.logo img {
  height: 55px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 30px;
}
.main-nav a {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  color: var(--retro-brown);
  background: transparent;
  border-radius: 11px;
  padding: 8px 18px;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.2s, background 0.25s;
  letter-spacing: 0.032em;
}
.main-nav a.cta,
.cta.primary {
  background: var(--secondary);
  color: #fff !important;
  border-radius: 16px;
  font-family: 'Montserrat', monospace;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8.5px 21px;
  margin-left: 11px;
  box-shadow: 0 2px 8px 0 #E8984625;
  border: 2px solid #fff0;
  outline: none;
  transition: background 0.19s, box-shadow 0.24s, color 0.16s;
}
.main-nav a.cta:hover,
.cta.primary:hover,
.main-nav a.cta:focus,
.cta.primary:focus {
  background: #b71c1c;
  color: #fff !important;
  box-shadow: 0 3px 9px 0 #E5393544, 0 1px 0 #fff8 inset;
  border-color: #DE575B;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #ffedd3;
  color: var(--retro-red);
  outline: none;
}
.main-nav a.cta {
  margin-left: 8px;
}

/* Hamburger button */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.23s;
  position: relative;
  z-index: 59;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #b71c1c;
  outline: 2px solid var(--retro-gold);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, #f8b654 25%, #ffe5b2 100%);
  box-shadow: 0 0 30px #e8984699;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.82,0,.3,1);//slide effect
  z-index: 77;
  padding: 0 0 0 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: #fff7eb;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  position: absolute;
  right: 20px;
  top: 18px;
  cursor: pointer;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  box-shadow: 0 1.5px 6px #deb77c33;
  z-index: 91;
  transition: background 0.21s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #DE575B;
  color: white;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 90px;
  align-items: flex-start;
  padding-left: 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 1.28rem;
  padding: 10px 0;
  color: var(--retro-brown);
  background: transparent;
  border-radius: 7px;
  width: 100%;
  display: block;
  transition: background 0.19s, color 0.16s;
  outline: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFEAD6;
  color: var(--secondary);
  outline: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Hide mobile nav on desktop */
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==============
   RESPONSIVE LAYOUTS & FLEXBOX
   ============== */
.card-container, .feature-grid, .card-grid, .content-grid, .delivery-types ul, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card-grid, .content-grid {
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.card, .feature-grid > div {
  flex: 1 1 235px;
  min-width: 220px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 8px 0 #e3cfb644,
              0 1px 0 #f8e6bc inset;
  border-radius: 15px;
  border: 1.2px solid #ead1a8;
  padding: 28px 20px 22px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.21s, transform 0.18s;
}
.card:hover, .feature-grid > div:hover, .faq-item:hover {
  box-shadow: 0 5px 32px 0 #E8984650, 0 1px 0 #fff6e0 inset;
  transform: translateY(-3px) scale(1.025);
}

/* Feature items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fffbe8;
  border-radius: 14px;
  border: 1.1px dashed #EDB88B;
  padding: 20px 24px;
  box-shadow: 0 1.5px 5px #dadada33 inset;
  margin-bottom: 10px;
  transition: box-shadow 0.19s, background 0.14s;
}
.faq-item h3 {
  margin-bottom: 7px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 16px;
  background: #fff;
  border-radius: 17px;
  border: 1.3px dotted #FFD567;
  box-shadow: 0 6px 18px #8a682814, 0 1px 0 #ffe3ad inset;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, background 0.15s;
  position: relative;
}
.testimonial-card blockquote {
  color: var(--retro-navy);
  background: transparent;
  border-left: 4px solid var(--retro-gold);
  font-size: 1.14rem;
}
.testimonial-meta {
  font-family: 'Roboto', sans-serif;
  color: #94704d;
  font-size: 0.97rem;
  text-align: right;
  width: 100%;
}

/* Contact snippet */
.contact-snippet, .company-contact-details, .opening-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0 0 0;
}
.contact-snippet p, .company-contact-details p, .opening-hours p {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Footer */
footer {
  background: repeating-linear-gradient(-45deg, #FFEAD6 0px, #FFEAD6 28px, #fff9e2 30px, #fff9e2 58px);
  border-top: 5px solid var(--retro-brown);
  box-shadow: 0 -1.5px 0 #ffc95f inset;
  padding: 34px 0 28px 0;
}
footer .container {
  flex-direction: row;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  color: var(--retro-brown);
  background: none;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s;
  padding: 3px 7px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #fffbe8;
  color: var(--secondary);
}
.footer-contact {
  font-size: 0.96rem;
  color: #664229;
  margin-top: 0px;
  margin-bottom: 0;
  padding: 0;
}
footer img {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
}

/* ============
 PRICES TABLE "RETRO STYLE"
 ============= */
.price-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 32px;
  background: #fffbe9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px #eddca644, 0 1px 0 #ffe inset;
}
.price-table th, .price-table td {
  font-size: 1.04rem;
  padding: 13px 14px;
  border-bottom: 1px solid #EDD2A6;
  text-align: left;
}
.price-table th {
  background: #FFD567;
  color: #664229;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr:hover {
  background: #faf3e3;
  transition: background 0.19s;
}

/* ============
 BUTTONS/CTAs, FORMS
 ============ */
.cta, .cta.primary, .cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 11px 24px;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 1.5px 8px #DE575B22;
  cursor: pointer;
  outline: none;
  margin: 0 8px 0 0;
  transition: background 0.2s, box-shadow 0.16s, color 0.13s, transform 0.11s;
  position: relative;
}
.cta.primary, .cta.secondary {
  margin-top: 14px;
}
.cta.secondary {
  background: var(--retro-brown);
}
.cta:hover, .cta:focus, .cookie-banner button:hover, .cookie-modal button:hover {
  background: #b71c1c;
  color: #fff;
  box-shadow: 0 2.5px 18px #B9562F44, 0 1px 0 #ffe1 inset;
  transform: scale(1.035);
}

/* =======
 TARIFFS
 ======= */
.tariff-explain ul, .example-calc ul, .delivery-types ul {
  margin-bottom: 12px;
  list-style: disc inside;
}
.tariff-explain ul {
  margin-left: 0;
  margin-top: 3px;
  color: var(--retro-brown);
}

/* =======
  DIRECTIONS and ADDRESS
 ======= */
.directions ul {
  margin-bottom: 0;
}
/* ===========
 COOKIE BANNER & MODAL
 =========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F8F9FA;
  border-top: 2.5px solid var(--retro-gold);
  box-shadow: 0 -2px 16px #B9562f1C;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 99;
  font-size: 1.01rem;
  animation: bannerIn 0.8s cubic-bezier(.39,.58,.57,1.01) 1;
}
.cookie-banner p {
  color: #2d2417;
  margin-bottom: 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.04rem;
}
.cookie-banner button {
  margin: 0 7px 0 0;
}
@keyframes bannerIn {
  0% { transform: translateY(50px); opacity: 0; }
  88% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #c19d6658;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.23s;
}
@keyframes modalFadeIn { from { opacity: 0;} to { opacity: 1; } }

.cookie-modal {
  background: #fffbe8;
  border: 2.7px solid var(--retro-gold);
  border-radius: 16px;
  width: 97vw;
  max-width: 410px;
  box-shadow: 0 8px 48px #DE575B33;
  padding: 32px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 210;
  animation: modalPop 0.2s cubic-bezier(.46,.6,.42,1.2);
}
@keyframes modalPop {
  0% { transform: scale(.93); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: var(--retro-brown);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 9px;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-modal .cookie-option input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: var(--secondary);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-description {
  font-size: 0.97rem;
  color: #5d4e3a;
}

/* ================== 
   RESPONSIVE FLEXBOX ADJUSTMENTS
   ================== */
@media (max-width: 950px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  header .container, footer .container {
    flex-direction: row;
    gap: 11px;
    padding: 9px 7px 5px 7px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.68rem; }
  h2, .h2 { font-size: 1.21rem; }
  h3, .h3 { font-size: 1.05rem; }
  section {
    padding: 26px 6px;
    margin-bottom: 34px;
  }
  .main-nav {
    gap: 17px !important;
  }
  .container {
    gap: 0;  
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .card-grid, .content-grid {
    flex-direction: column;
    gap: 17px !important;
  }
  .card, .feature-grid > div {
    padding: 16px 10px;
    min-width: 0px;
  }
  .testimonial-card {
    padding: 15px 10px 11px;
    border-radius: 9px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 15px;
  }
  .faq-list {
    gap: 13px;
  }
}
@media (max-width: 580px) {
  .logo img, header img {
    height: 36px !important;
  }
  .cookie-modal {
    max-width: 95vw;
    padding: 19px 7px 18px;
  }
}

/* ===================
   ADDITIONAL MICRO-INTERACTIONS
   =================== */
/* Retro hover underline for nav links */
.main-nav a:not(.cta)::after, .mobile-nav a:not(.cta)::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--retro-gold);
  transition: width 0.19s;
}
.main-nav a:not(.cta):hover::after, .main-nav a:not(.cta):focus::after,
.mobile-nav a:not(.cta):hover::after, .mobile-nav a:not(.cta):focus::after {
  width: 60%;
}

button:focus, a:focus {
  outline: 2.3px solid var(--retro-gold);
}

/* Cards small micro-interaction */
.card, .feature-grid > div {
  transition: box-shadow 0.19s, transform 0.15s, background 0.11s;
}
.card:active, .feature-grid > div:active {
  background: #fffbe9;
  transform: scale(.97);
}

/* ================
   MISCELLANEOUS
   ================ */
::-webkit-scrollbar {
  width: 10px;
  background: #EDD2A6;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #FFD567;
  border-radius: 6px;
}
.table-responsive {
  display: flex;
  overflow-x: auto;
}

/* ===============
   RETRO BADGES/ICONS
   =============== */
ul li img, .company-contact-details img, .contact-snippet img, .opening-hours img {
  height: 21px;
  width: 21px;
  vertical-align: middle;
  margin-right: 7px;
  opacity: 0.88;
  filter: sepia(26%) saturate(90%) brightness(97%);
}

/* ===============
   SPECIAL ELEMENTS for RETRO EFFECTS (optional)
   =============== */
.section-retro-frame {
  position: relative;
}
.section-retro-frame:before {
  content: '';
  display: block;
  position: absolute;
  left: -10px;
  top: -10px;
  bottom: -10px;
  right: -10px;
  border: 5px double #FFD567;
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ===================
  ENSURE NO OVERLAPPING, NO GRID, FLEX ONLY
   =================== */
/* Already done through the above selectors per guidelines */
