/* =========================================================
   BilGuiden Sverige - 'geometric_structured' CSS Theme
   Author: Senior CSS Developer & UI Designer
   ========================================================= */
/* ---------------- CSS Reset & Normalize ---------------- */
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;
}
body {
  line-height: 1.45;
  background-color: #fff;
  color: #1b2635;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
/* ---------------- Brand Variables & Typography ---------------- */
:root {
  --primary: #003366;
  --secondary: #E5E8EC;
  --accent: #FFBF47;
  --dark: #1b2635;
  --gray: #7d8591;
  --light: #fff;
  --radius: 10px;
  --shadow: 0 2px 8px rgba(0,26,51,0.07), 0 1.5px 6px rgba(0,0,0,0.03);
  --card-shadow: 0 2px 10px rgba(0,30,60,0.10);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--secondary);
  color: var(--dark);
  letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.10;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--dark);
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 6px;
}
strong {
  font-weight: 600;
}
/* Display tight, geometric, angular feel */
h1, h2, h3 {
  text-transform: none;
  border-left: 5px solid var(--accent);
  padding-left: 15px;
  margin-bottom: 22px;
  border-radius: 3px 10px 10px 3px;
}
h1 { border-width: 6px; }
h2 { border-width: 4px; }
h3 { border-width: 3px; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-cta {
  background: var(--primary);
  color: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 0;
  padding: 44px 20px 48px 20px;
}
.section-cta h2 {
  color: var(--light);
  border-left: 4px solid var(--accent);
}
/* ---------------- Header / Navigation ---------------- */
header {
  background: var(--light);
  box-shadow: 0 2px 4px rgba(0,14,36,0.03);
  border-bottom: 2.5px solid var(--primary);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 14px 20px;
}
header img {
  max-height: 46px;
  width: auto;
  margin-right: 0;
  border-radius: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-display);
}
.main-nav a {
  color: var(--primary);
  font-weight: 500;
  position: relative;
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.21s, color 0.21s, box-shadow 0.21s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,30,80,0.05);
}
.cta-btn {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
  border: none;
  border-radius: 100px 10px 100px 10px;
  padding: 10px 28px;
  margin-left: 14px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(255,191,71,0.12);
  letter-spacing: 0.03em;
  outline: none;
  font-size: 1.03rem;
  position: relative;
  z-index: 2;
  transition: background 0.17s, box-shadow 0.19s, color 0.16s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,51,102,0.14);
  border-radius: 10px 100px 10px 100px;
  border-left: 4px solid var(--accent);
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: 5px;
  padding: 6px 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,191,71,0.10);
  margin-left: 16px;
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
  outline: 2px solid var(--primary);
}
/* Mobile menu overlay styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--light);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.44s cubic-bezier(.74,.06,.4,.92);
  box-shadow: 7px 0 32px rgba(0,34,68,0.14);
  min-height: 100dvh;
  width: 100vw;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  align-self: flex-end;
  margin: 28px 24px 0px 0px;
  cursor: pointer;
  border-radius: 5px;
  padding: 1px 16px 6px 8px;
  transition: background 0.17s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--accent);
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 32px;
  font-size: 1.23rem;
  margin-top: 28px;
}
.mobile-nav a {
  color: var(--primary);
  font-weight: 600;
  padding: 10px 0 8px 0px;
  border-radius: 6px;
  transition: background 0.18s, color 0.17s;
  width: 100%;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--accent);
}
@media (max-width:1050px) {
  header .container {
    gap: 12px;
    padding: 10px 7px;
  }
  .main-nav a { font-size: 0.97rem; }
  .cta-btn { padding: 9px 18px; }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 0.90rem; }
}
@media (max-width: 820px) {
  header .container {
    flex-wrap: wrap;
  }
  .main-nav { gap: 12px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ---------------- Hero, Sections & Features ---------------- */
.hero {
  background: linear-gradient(101deg,#e5e8ec 64%, #fff 100%);
  border-radius: 0 0 46px 46px;
  box-shadow: 0 10px 38px rgba(0,44,80,0.12);
  margin-bottom: 50px;
  padding-top: 33px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 270px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
  max-width: 760px;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 14px;
  border-width: 8px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--gray);
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 24px;
}
.features-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 10px;
}
.features-grid > div {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 20px 24px;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.17s;
  border-left: 7px solid var(--accent);
  margin-bottom: 20px;
}
.features-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}
.features-grid > div:hover {
  box-shadow: 0 6px 23px rgba(0,51,132,0.13);
  transform: translateY(-5px) scale(1.018);
}
.features-grid h3 {
  color: var(--primary);
  font-size: 1.07rem;
  border: none;
  margin: 0 0 7px 0;
}
.features-grid p {
  font-size: 0.97rem;
  color: var(--gray);
  margin-bottom: 0;
}
.step-list {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.step-list li {
  background: var(--secondary);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,34,90,0.07);
  padding: 13px 20px;
  color: var(--dark);
  font-size: 1.08rem;
  font-family: var(--font-body);
  line-height: 1.33;
  margin-bottom: 8px;
}
/* ---------------- Card & Grid Patterns (Flexbox only) ---------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 38px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--light);
  padding: 28px 20px 22px 20px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  min-width: 230px;
  flex: 1 1 310px;
  transition: box-shadow 0.16s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 25px rgba(0,30,60,0.17);
  transform: translateY(-6px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
}

/* ---------------- Testimonials ---------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--secondary);
  border-radius: 12px 80px 12px 36px;
  padding: 20px 30px 20px 36px;
  margin-bottom: 20px;
  box-shadow: 0 0.7px 10px rgba(0,47,78,0.07);
  border-left: 7px solid var(--primary);
  transition: box-shadow 0.16s, border-left 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 27px rgba(0,44,80,0.13);
  border-left: 7px solid var(--accent);
}
.testimonial-card p {
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.32;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
/* ---------------- FAQ Accordion ---------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 38px;
}
.faq-item {
  background: var(--secondary);
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,51,80,0.11);
  padding: 18px 22px;
  border-left: 6px solid var(--accent);
  cursor: pointer;
  transition: box-shadow 0.16s, border-color 0.2s;
  margin-bottom: 12px;
}
.faq-item h2 {
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 8px;
  border: none;
  padding-left: 0;
}
.faq-content {
  font-size: 1rem;
  color: var(--dark);
  display: block;
  margin-top: 9px;
}
.faq-item.active {
  box-shadow: 0 8px 27px rgba(0,44,80,0.13);
  border-left: 6px solid var(--primary);
}
.faq-item:focus, .faq-item:hover {
  border-left: 6px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0,44,80,0.19);
  outline: 2px solid var(--accent);
}

/* ---------------- Car Listing - Cards ---------------- */
.car-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.car-preview {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 26px 24px 22px 24px;
  flex: 1 1 320px;
  min-width: 240px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 7px solid var(--primary);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border-left 0.18s;
}
.car-preview:hover {
  box-shadow: 0 10px 30px rgba(0,44,80,0.19);
  border-left: 7px solid var(--accent);
}
.car-preview h3 {
  border: none;
  font-size: 1.13rem;
  color: var(--primary);
}
.car-preview ul {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}
.car-preview li {
  font-size: 0.98rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.car-preview .cta-btn {
  align-self: flex-start;
  margin-top: 10px;
}
.search-block {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 28px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-block input[type="text"] {
  border: 2px solid var(--secondary);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.07rem;
  margin-bottom: 10px;
  outline: none;
  color: var(--primary);
  background: #f7f7fa;
  transition: border 0.15s, box-shadow 0.15s;
}
.search-block input[type="text"]:focus {
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0,30,80,0.07);
}
.filter-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.filter-panel label {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1rem;
  margin-right: 4px;
}
.filter-panel select {
  border: 2px solid var(--secondary);
  border-radius: 6px;
  padding: 6px 16px 8px 10px;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--primary);
  transition: border 0.15s;
}
.filter-panel select:focus {
  border-color: var(--accent);
}
/* ---------------- Footer ---------------- */
footer {
  background: var(--primary);
  color: var(--light);
  padding-top: 36px;
  padding-bottom: 24px;
  margin-top: 50px;
  font-family: var(--font-display);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--light);
  text-decoration: underline wavy;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.96rem;
  align-items: flex-start;
}
.footer-info img {
  max-height: 35px;
  margin-bottom: 7px;
}
.footer-info p, .footer-info a {
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.98rem;
}
.footer-info img[alt*='icon-'] {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}
/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--light);
  padding: 22px 13vw 20px 13vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  box-shadow: 0 -3px 20px rgba(0,35,60,0.13);
  z-index: 2000;
  font-family: var(--font-display);
  justify-content: space-between;
  animation: slideUpIn 0.65s cubic-bezier(.63,.47,.35,1.11);
}
@keyframes slideUpIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--light);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
  margin: 0 2px;
}
.cookie-banner .accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--light);
  color: var(--primary);
}
.cookie-banner .reject {
  background: #e5e8ec;
  color: var(--primary);
}
.cookie-banner .reject:hover {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .settings {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-banner .settings:hover {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 19px 7vw 20px 7vw;
  }
  .cookie-banner .cookie-btns {
    gap: 12px;
    width: 100%;
    justify-content: flex-start;
  }
}
/* ----- Cookie Modal (Settings) ---------- */
.cookie-modal-overlay {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  background: rgba(13,24,41,0.43);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalOverlay 0.4s;
}
@keyframes fadeInModalOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--light);
  border-radius: 16px 80px 16px 16px;
  max-width: 440px;
  width: 97vw;
  padding: 34px 32px 30px 30px;
  box-shadow: 0 4px 41px rgba(0,30,60,0.27);
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: bounceModalShow 0.44s cubic-bezier(.68,-0.12,.36,1.37);
}
@keyframes bounceModalShow {
  0% { transform: scale(.85) translateY(40px); opacity: 0; }
  78% { transform: scale(1.03) translateY(-9px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.34rem;
  color: var(--primary);
  border: none;
  margin-bottom: 7px;
  padding-left: 3px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: var(--primary);
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 43px;
  height: 24px;
  background: var(--secondary);
  border: 2px solid var(--primary);
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: border 0.18s, background 0.14s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary);
  transition: transform 0.20s, background 0.11s;
}
.cookie-toggle:checked:before {
  transform: translateX(17px);
  background: var(--primary);
}
.cookie-modal .alwayson {
  color: var(--dark);
  font-size: 0.94rem;
  font-style: italic;
}
.cookie-modal .modal-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .close-modal {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 8px 19px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .close-modal:hover {
  background: var(--accent);
  color: var(--primary);
}
/* ========== Responsive: Mobile-first ========== */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .features-grid, .car-listings, .card-container, .content-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 12px;
  }
  .footer-info, .footer-nav {
    font-size: 0.92rem; 
  }
}
@media (max-width: 768px) {
  .container { padding: 0 4vw; }
  .hero .container { min-height: 180px; }
  .hero { border-radius: 0 0 32px 32px; padding-top: 18px; }
  .section, .section-cta { padding: 24px 8px 32px 8px; }
  .features-grid, .car-listings, .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .features-grid > div, .card, .car-preview {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .footer-nav, .footer-info {
    align-items: flex-start !important;
    text-align: left;
  }
  footer .container {
    gap: 20px;
    flex-direction: column;
    padding: 0 16px;
  }
  .footer-info {
    font-size: 0.95rem;
  }
  .faq-item {
    padding: 16px 8vw;
  }
  .testimonial-card {
    padding: 20px 10px 20px 14px;
  }
  .section-cta {
    padding: 32px 10px 32px 10px;
  }
  .cookie-modal { padding: 23px 8vw 26px 6vw; }
}
@media (max-width: 500px) {
  .cookie-banner {
    padding: 15px 2vw 15px 2vw;
    font-size: 0.96rem;
  }
  .cookie-modal { padding: 17px 2vw 14px 2vw; }
  .faq-item {padding: 10px 4vw;}
}
/* ------------ Extra UI Details ------------ */
a {
  transition: color 0.18s, background 0.17s, border 0.14s;
}
a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
  color: var(--primary);
  background: var(--secondary);
}
input[type="text"], select, textarea {
  transition: outline 0.15s, border 0.13s;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent);
}
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
/* Listing category badge */
.category {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.93rem;
  padding: 1px 12px 2px 11px;
  border-radius: 16px;
  margin-left: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
/* Opening hours highlight */
.opening-hours, .contact-info {
  background: var(--secondary);
  border-radius: 10px;
  padding: 13px 22px;
  margin-bottom: 15px;
  box-shadow: 0 1px 8px rgba(0,51,80,0.07);
  font-size: 1.05rem;
}
.contact-info p img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
}
/* Utility: visually hidden for accessibility */
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Misc Spacing Fixes */
ol, ul {
  margin-bottom: 20px;
}
main > section, .section {
  margin-bottom: 60px;
}
@media (max-width: 768px){
  main > section, .section {
    margin-bottom: 34px;
  }
}
