/* RESET & BASE STYLES */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #2B2A27;
  background-color: #fff;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #258A47;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #AD9238;
  outline: none;
}
ul, ol {
  padding-left: 1.6em;
  margin: 0.5em 0 1.5em 0;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1B3B2E;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.32rem; font-weight: 600; }
h4 { font-size: 1.13rem; font-weight: 600; }
p, .subheadline { font-size: 1rem; margin: 0 0 1em 0; color: #37322C; }

/* BRAND COLORS & LUXURY PREMIUM STYLE */
:root {
  --vv-primary: #258A47;
  --vv-secondary: #1B3B2E;
  --vv-accent-bg: #FFE6C7;
  --vv-soft-bg: #F7F4EF;
  --vv-gold: #AD9238;
  --vv-gold-light: #FFEFC1;
  --vv-white: #fff;
  --vv-grey: #F0EDE7;
  --vv-dark: #181612;
}

/* LUXURY PREMIUM: ACCENTS, BORDER, SHADOWS */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vv-soft-bg);
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 rgba(173,146,56,0.05), 0 2px 6px rgba(27,59,46,0.14);
}
main > section.hero {
  background: var(--vv-accent-bg);
  box-shadow: 0 4px 24px 0 rgba(173,146,56,0.07);
  border: 2px solid var(--vv-gold-light);
  margin-top: 28px;
}
main > section.cta, main > section.success {
  background: var(--vv-white);
  border: 2px solid var(--vv-gold-light);
  box-shadow: 0 2px 24px 0 rgba(173,146,56,0.08);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* FLEXBOX LAYOUTS */
.card-container,
.feature-grid,
.feature-icons,
.recipe-grid,
.service-grid,
.latest-articles,
.category-list,
.blog-posts .latest-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 12px;
}
.card,
.recipe-teaser,
.feature-item,
.feature-icons > div,
.service-grid > div,
.latest-articles > article,
.category-list > a {
  background: var(--vv-white);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(173,146,56,0.04);
  border: 1.5px solid var(--vv-gold-light);
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 170px;
  transition: box-shadow .22s, border-color .2s, transform .18s;
}
.card:hover,
.recipe-teaser:hover,
.feature-icons > div:hover,
.service-grid > div:hover {
  box-shadow: 0 8px 40px rgba(173,146,56,0.12), 0 4px 14px rgba(27,59,46,0.13);
  border-color: var(--vv-gold);
  transform: translateY(-2px) scale(1.017);
}

.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--vv-white);
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1.5px solid var(--vv-gold-light);
  box-shadow: 0 2px 10px rgba(173,146,56,0.05);
  font-size: 1.05rem;
  max-width: 540px;
}
.testimonial-card p {
  color: #181612;
  font-weight: 500;
  margin-bottom: 0.3em;
  font-size: 1.08em;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--vv-primary);
}
.rating-section {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  margin-top: 14px;
  color: #181612;
}

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

/* NAVIGATION BAR */
header {
  background: var(--vv-white);
  border-bottom: 2px solid var(--vv-gold-light);
  box-shadow: 0 2px 20px 0 rgba(173,146,56,0.06);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
  height: 56px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #23231F;
  padding: 6px 0;
  position: relative;
  letter-spacing: 0.01em;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--vv-gold);
}
.main-nav a.active {
  color: var(--vv-primary);
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: var(--vv-gold);
  color: #23231F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  padding: 13px 36px;
  border-radius: 28px;
  font-size: 1.1rem;
  margin-left: 26px;
  box-shadow: 0 2px 14px rgba(173,146,56,0.08);
  letter-spacing: 0.03em;
  cursor: pointer;
  text-align: center;
  transition: background .2s, box-shadow .15s, color .2s, border-color .2s;
  border: 2px solid var(--vv-gold-light);
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vv-primary);
  color: #fff;
  border-color: var(--vv-primary);
  box-shadow: 0 4px 18px rgba(37, 138, 71, 0.14);
}

/* BURGER MENU (HIDDEN DESKTOP) */
.mobile-menu-toggle {
  display: none;
  background: var(--vv-white);
  color: var(--vv-primary);
  font-size: 2.3rem;
  padding: 4px 16px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: background .2s;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vv-gold-light);
  color: var(--vv-gold);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(252,250,248,0.97);
  box-shadow: 0 16px 128px rgba(23, 32, 42, 0.15);
  z-index: 5002;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.55,0.11,.24,1), opacity .24s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  display: block;
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--vv-primary);
  margin: 20px 26px 0 0;
  cursor: pointer;
  transition: color .2s;
  z-index: 5003;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--vv-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 48px 40px;
  font-size: 1.22rem;
}
.mobile-nav a {
  color: #23231F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid var(--vv-gold-light);
  width: 100%;
  transition: color .17s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vv-primary);
  background: var(--vv-gold-light);
}

/* HERO SECTION */
.hero h1 {
  font-size: 2.55rem;
  color: var(--vv-primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.hero .subheadline {
  font-size: 1.21rem;
  color: #37322C;
  margin-bottom: 20px;
  max-width: 540px;
}
.hero .cta-btn {
  margin-top: 16px;
}

/* FEATURE GRID SPECIAL */
.feature-grid, .feature-icons {
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div img, .feature-icons > div img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.feature-grid > div, .feature-icons > div {
  min-width: 210px;
  flex: 1 1 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  position: relative;
}

/* RECIPE TEASERS & DAILY HIGHLIGHT */
.recipe-teaser {
  border-left: 6px solid var(--vv-primary);
  min-width: 175px;
}
.recipe-teaser.daily-highlight {
  border-left: 6px solid var(--vv-gold);
  background: #FFF9E7;
  box-shadow: 0 4px 16px rgba(173,146,56,0.08);
}
.recipe-teaser h3 {
  color: var(--vv-primary);
  font-size: 1.18em;
}

/* CATEGORY LIST */
.category-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.category-list a {
  background: var(--vv-white);
  border: 1.5px solid var(--vv-gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: #212614;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 9px 18px;
  transition: border-color .2s, box-shadow .15s, background .15s;
  font-size: 1rem;
}
.category-list a:hover, .category-list a:focus {
  border-color: var(--vv-gold);
  box-shadow: 0 2px 10px rgba(173,146,56,0.16);
  background: #FFFDEF;
}

/* FILTER OPTIONS */
.filter-options {
  margin: 14px 0 0 0;
  font-size: 0.97rem;
  color: #181612;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.filter-options a {
  color: var(--vv-primary);
  font-weight: 600;
  margin: 0 6px;
  padding: 2px 7px;
  border-radius: 7px;
  transition: background .15s, color .15s;
  text-decoration: underline dotted 2px #AD9238;
}
.filter-options a:hover, .filter-options a:focus {
  background: var(--vv-gold-light);
  color: var(--vv-gold);
  text-decoration: underline solid 2px #AD9238;
}

/* SEARCH BAR (disabled for now) */
.search-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--vv-grey);
  border-radius: 12px;
  padding: 7px 18px;
  margin-bottom: 16px;
  max-width: 410px;
}
.search-bar input[type="text"] {
  border: none;
  background: transparent;
  font-size: 1.07rem;
  padding: 7px 0;
  outline: none;
}
.search-bar button {
  background: var(--vv-gold-light);
  border: none;
  border-radius: 7px;
  padding: 7px;
  cursor: not-allowed;
}
.search-bar button img {
  width: 22px;
  height: 22px;
}
.search-bar input[disabled], .search-bar button[disabled]{
  opacity: 0.43;
  cursor: not-allowed;
}

/* BLOG POSTS / LATEST ARTICLES */
.latest-articles > article {
  flex: 1 1 265px;
  border-radius: 14px;
  background: var(--vv-white);
  padding: 25px 18px 18px 18px;
  box-shadow: 0 2px 9px rgba(37,138,71,0.07);
  border: 1.2px solid var(--vv-gold-light);
  min-width: 170px;
}
.latest-articles > article h3 {
  font-size: 1.08rem;
  color: var(--vv-primary);
}

/* BLOG TOPIC FILTER */
.topic-filter {
  margin: 28px 0 0 0;
  font-size: 1.08rem;
}
.topic-filter h4 {
  margin-bottom: 0.5em;
}
.topic-filter a {
  display: inline-block;
  color: var(--vv-primary);
  font-weight: 600;
  margin: 0 6px;
  padding: 2px 8px;
  border-radius: 7px;
  background: var(--vv-gold-light);
  transition: background .15s, color .15s;
}
.topic-filter a:hover, .topic-filter a:focus {
  background: var(--vv-primary);
  color: #fff;
}

/* SERVICE GRID */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 18px 0 0 0;
}
.service-grid > div {
  background: var(--vv-white);
  border-radius: 14px;
  border: 1.5px solid var(--vv-gold-light);
  box-shadow: 0 2px 8px rgba(173,146,56,0.05);
  padding: 22px 20px 20px 20px;
  min-width: 175px;
  flex: 1 1 210px;
  max-width: 320px;
}
.service-grid > div h3 {
  color: var(--vv-primary);
  font-size: 1.15rem;
}

/* TIP HIGHLIGHTS */
.tip-highlights ul {
  background: var(--vv-accent-bg);
  border-radius: 12px;
  padding: 14px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  color: #3c3615;
  margin: 16px 0 0 0;
}
.tip-highlights li {
  font-weight: 500;
}

/* FORMS & BUTTONS */
input, textarea, select {
  font-family: inherit;
  border-radius: 8px;
  border: 1px solid var(--vv-gold-light);
  padding: 10px 14px;
  font-size: 1rem;
  outline: none;
  background: var(--vv-white);
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vv-gold);
}
button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
}

/* QUICK GUIDES, TIPS, HOW-TO, QUICK SOLUTIONS */
.quick-guides, .how-to, .quick-solutions {
  background: var(--vv-white);
  border-radius: 10px;
  border: 1.5px solid var(--vv-gold-light);
  box-shadow: 0 2px 8px rgba(173,146,56,0.04);
  padding: 16px 14px;
  margin-top: 14px;
  font-size: 1.05rem;
}

.quick-guides h3, .how-to h3 {
  margin-top: 0;
  color: var(--vv-primary);
  font-size: 1.12rem;
}
.quick-solutions h4 {
  margin-bottom: 0.5em;
  color: var(--vv-gold);
}

/* FOOTER */
footer {
  background: var(--vv-secondary);
  color: #fff;
  padding: 40px 0 16px 0;
  border-top: 3px solid var(--vv-gold-light);
  font-size: 1.02rem;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.92;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 2px 0;
  transition: color .18s, opacity .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vv-gold);
  opacity: 1;
}
.text-section.contact-info {
  margin-bottom: 18px;
}
.text-section.contact-info h3 {
  color: var(--vv-gold);
  margin-bottom: 8px;
}
.text-section.contact-info p {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.88;
}
.text-section.contact-info a {
  color: #f3e9cc;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 20px;
  margin: 10px 0 0 0;
}
.social-links a {
  background: var(--vv-gold-light);
  padding: 7px;
  border-radius: 8px;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-links a:hover, .social-links a:focus {
  background: var(--vv-gold);
}
.social-links img {
  width: 24px;
  height: 24px;
  display: block;
}
footer small {
  margin-top: 20px;
  display: block;
  color: #f2ead2;
  opacity: 0.7;
}

/* LEGAL PAGES */
.legal {
  background: var(--vv-white);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(173,146,56,0.07);
  border: 1.5px solid var(--vv-gold-light);
  color: #181612;
  padding: 40px 22px 32px 22px;
  margin-bottom: 60px;
}

/* COOKIE CONSENT BANNER & MODAL */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 6000;
  background: var(--vv-white);
  box-shadow: 0 -6px 44px 4px rgba(173,146,56,0.16);
  border-top: 3px solid var(--vv-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 18px;
  animation: cookieSlideUp 0.7s cubic-bezier(.52,1.2,.25,1) 1;
  min-height: 54px;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 13px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  border: 2px solid var(--vv-gold);
  padding: 8px 26px;
  margin: 0 3px;
  cursor: pointer;
  transition: background .2s, color .17s, border-color .17s, box-shadow .15s;
}
.cookie-btn.accept {
  background: var(--vv-gold);
  color: #23231F;
}
.cookie-btn.reject {
  background: var(--vv-white);
  color: var(--vv-primary);
  border: 2px solid var(--vv-primary);
}
.cookie-btn.settings {
  background: var(--vv-gold-light);
  color: #212614;
  border-color: var(--vv-gold-light);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--vv-primary);
  color: #fff;
  border-color: var(--vv-primary);
}
#cookie-preferences-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 6010;
  background: rgba(27,59,46,0.45);
  align-items: center;
  justify-content: center;
  animation: fadeInModal .41s;
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
#cookie-preferences-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: var(--vv-white);
  border-radius: 22px;
  border: 2px solid var(--vv-gold);
  box-shadow: 0 16px 60px rgba(173,146,56,0.19);
  padding: 35px 25px 25px 25px;
  min-width: 320px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: scaleFadeIn .52s;
}
@keyframes scaleFadeIn {
  from { opacity: 0; transform: scale(0.9);} to { opacity: 1; transform: scale(1);}
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23231F;
  font-weight: 500;
  font-size: 1.04rem;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: var(--vv-gold-light);
  border-radius: 13px;
  border: 1.5px solid var(--vv-gold-light);
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  transition: background .17s;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--vv-primary);
}
.cookie-toggle .toggle-knob {
  width: 17px; height: 17px;
  background: var(--vv-white);
  border-radius: 50%;
  position: absolute;
  top: 1.5px; left: 2px;
  box-shadow: 0 1.5px 3px rgba(173,146,56,0.17);
  transition: left 0.22s;
}
.cookie-toggle[aria-checked="true"] .toggle-knob {
  left: 16px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 15px;
  align-items: center;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1rem;
  min-width: 120px;
}

/* SUCCESS PAGE SPECIAL */
section.success ul {
  margin: 17px 0 0 0;
  padding-left: 16px;
}
section.success ul li a {
  color: var(--vv-primary);
  text-decoration: underline dotted 1.6px var(--vv-gold);
  font-weight: 500;
  border-radius: 5px;
  transition: color .17s, background .13s;
}
section.success ul li a:hover {
  color: var(--vv-gold);
}

/* MISCELLANEOUS */
blockquote {
  border-left: 3px solid var(--vv-gold);
  background: var(--vv-accent-bg);
  padding: 14px 18px;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.08rem;
}

hr {
  border: 0; height: 1px;
  background: var(--vv-gold-light);
  margin: 40px 0;
}

/* RESPONSIVE DESIGN: MOBILE-FIRST */
@media (max-width: 1350px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .feature-grid, .feature-icons, .service-grid, .recipe-grid, .latest-articles, .category-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .footer-nav, .blog-posts .latest-articles, .feature-grid, .feature-icons, .service-grid {
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  /* NAVIGATION */
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 0 12px;
    min-height: 60px;
  }
  /* LAYOUT */
  .container {
    padding: 0 7px;
  }
  .section, section {
    padding: 28px 6px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid, .feature-icons, .service-grid, .recipe-grid, .category-list, .latest-articles {
    flex-direction: column;
    gap: 13px;
  }
  .card, .card-content, .feature-icons > div, .service-grid > div, .recipe-teaser {
    min-width: unset;
    max-width: unset;
  }
  .category-list a, .footer-nav a {
    font-size: 1rem;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    font-size: 0.98rem;
    padding: 2px 0;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 3px;
  }
  .hero h1,
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.08rem; }
  p, .subheadline, .filter-options, .cookie-category label {
    font-size: 0.93rem;
  }
  .cta-btn {
    font-size: 1.01rem;
    padding: 11px 13vw;
    margin-left: 0;
  }
  .section, section {
    padding: 17px 2px;
  }
  .cookie-modal-content {
    min-width: 98vw;
    padding: 14px 3vw 14px 3vw;
  }
}

/* OVERRIDE AUTOFILL BG */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--vv-white) inset;
  box-shadow: 0 0 0 1000px var(--vv-white) inset;
  -webkit-text-fill-color: #332c1a !important;
}


/* HIDE SECTIONS WITH ARIA OR UTILITY CLASSES IF NEEDED (FOR JS) */
[aria-hidden="true"], .hidden {
  display: none !important;
}

/* VISUAL FOCUS FOR BUTTONS/LINKS */
button:focus, .cta-btn:focus, .cookie-btn:focus, a:focus {
  outline: 2px solid var(--vv-gold);
  outline-offset: 2px;
  z-index: 3;
}
