/* ===== CSS RESET & BASE STYLES ===== */
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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F8F5F1;
  color: #2D3A29;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #2D3A29;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #D3A869;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* ===== VARIABLES (with fallbacks) ===== */
:root {
  --clr-primary: #2D3A29;
  --clr-secondary: #D3A869;
  --clr-accent: #F8F5F1;
  --clr-white: #fff;
  --clr-black: #222;
  --clr-success: #50B97F;
  --clr-danger: #E25F5F;
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-1: 0 2px 18px 0 rgba(32,27,12,0.12);
  --shadow-card: 0 8px 28px 0 rgba(221, 175, 85, 0.09);
  --shadow-pop: 0 6px 28px 0 rgba(70,35,10,0.12);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ===== CONTAINERS, ALIGNMENT, SPACING ===== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .3s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(221,175,85,0.17);
  transform: translateY(-4px) scale(1.01);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #222;
  min-width: 0;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(71,61,30,0.14);
  transform: translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--clr-primary);
  letter-spacing: -1.5px;
}
h1 { font-size: 2.8rem; line-height: 1.1; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

strong, b { font-weight: 800; }

p, ul, li, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-primary);
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary, .cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 28px;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  border-radius: var(--radius-lg);
  font-size: 1.15em;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin: 8px 0 0 0;
  box-shadow: 0 2px 8px rgba(211,168,105,.10);
  transition: background .2s, color .2s, box-shadow .2s, transform .2s;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
}
.btn-primary {
  background: var(--clr-secondary);
  color: var(--clr-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: #fcc968;
  color: var(--clr-black);
  box-shadow: 0 4px 18px 0 rgba(211,168,105,.14);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: var(--clr-primary);
  color: var(--clr-accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #3E5037;
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(45,58,41,.14);
  transform: scale(1.01);
}
.cookie-consent-btn {
  font-size: 1rem;
  padding: 8px 18px;
  margin-right: 14px;
  min-width: 120px;
  border-radius: var(--radius-sm);
  background: var(--clr-secondary);
  color: var(--clr-primary);
  border: 2px solid var(--clr-secondary);
}
.cookie-consent-btn:last-child {
  margin-right: 0;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
  border-color: var(--clr-primary);
}
.reject-btn {
  background: #fff;
  color: var(--clr-danger);
  border: 2px solid var(--clr-danger);
}
.reject-btn:hover, .reject-btn:focus {
  background: var(--clr-danger);
  color: #fff;
}
.settings-btn {
  background: #fff;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.settings-btn:hover, .settings-btn:focus {
  background: var(--clr-primary);
  color: #fff;
}

/* ===== HEADER AND NAVIGATION ===== */
header {
  background: var(--clr-white);
  border-bottom: 4px solid var(--clr-secondary);
  box-shadow: 0 4px 16px 0 rgba(219,180,120,0.04);
  position: sticky;
  z-index: 1001;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
  padding-right: 10px;
}
.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px #e2c58642);
  transition: filter .2s;
}
.logo:hover img { filter: drop-shadow(0 0 24px #d3a86987); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 1.08rem;
  padding: 6px 10px;
  color: var(--clr-primary);
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--clr-secondary);
  color: var(--clr-primary);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--clr-primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 15px;
  cursor: pointer;
  transition: background .2s;
  z-index: 1202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--clr-secondary);
}

@media (max-width: 1030px) {
  .main-nav { gap: 16px; }
  .container { padding: 0 10px; }
}
@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  header .container {
    gap: 10px;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(248,245,241,0.97);
  box-shadow: -4px 0 30px 0 rgba(45,58,41,.09);
  z-index: 1300;
  transition: transform .32s cubic-bezier(.55,.14,.36,1.07);
  transition-property: transform, left;
  transform: translateX(0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu .mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 22px;
  font-size: 2.18rem;
  background: none;
  color: var(--clr-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  z-index: 1400;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 80px;
  padding-left: 42px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--clr-primary);
  padding: 6px 0;
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--clr-secondary);
}
@media (max-width: 780px) {
  .mobile-menu { display: flex; }
}

/* ===== HERO, HIGHLIGHTS, SECTIONS ===== */
.hero {
  background: linear-gradient(135deg, #fffbe9 76%, #D3A869 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 44px 0 rgba(211,168,105,0.09);
  margin-bottom: 60px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--clr-primary);
  line-height: 1.13;
  margin-bottom: 6px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 24px 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
}

.highlights, .blog-preview, .newsletter, .about, .values, .testimonials, .location, .contact, .blog-hero, .blog-listing, .tips-features, .faqs, .danke, .legal, .categories, .recipe-listing {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 44px;
}

.highlights h2, .blog-preview h2, .newsletter h2, .about h2, .about h3, .values h2, .testimonials h2, .location h2, .blog-hero h2, .tips-features h2, .faqs h2, .danke h2, .legal h2, .categories h2, .recipe-listing h2 {
  color: var(--clr-primary);
  font-family: var(--font-display);
}

/* ===== CARDS, TEASERS, CATEGORIES, BLOG/SPECIALS ===== */
.recipe-teasers, .category-grid, .blog-post-teasers, .recipe-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.recipe-teasers > div, .category-grid > div, .blog-post-teasers > div, .recipe-cards > div {
  flex: 1 1 260px;
  min-width: 230px;
  background: var(--clr-accent);
  border-radius: var(--radius-md);
  padding: 22px 18px 20px 18px;
  box-shadow: 0 2px 10px 0 rgba(221,175,85,0.06);
  transition: box-shadow .18s, transform .18s;
  margin-bottom: 12px;
  position: relative;
}
.recipe-teasers > div:hover,
.category-grid > div:hover,
.blog-post-teasers > div:hover,
.recipe-cards > div:hover {
  box-shadow: 0 10px 38px 0 rgba(45,58,41,.14);
  background: #fff7ed;
  transform: translateY(-3px) scale(1.02);
}
.category-tag {
  display: inline-block;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 3px 16px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .content-grid,
  .recipe-teasers, .category-grid, .blog-post-teasers, .recipe-cards {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===== BLOG SEARCH, FILTER SEARCH BARS ===== */
.filter-search-bar, .blog-search-bar, .tipps-search-bar {
  width: 100%;
  display: flex;
  align-items: center;
  background: #F8F5F1;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: 0 1px 6px 0 rgba(211,168,105,0.06);
}
.filter-search-bar input,
.blog-search-bar input,
.tipps-search-bar input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1.07rem;
  border: none;
  background: none;
  color: var(--clr-primary);
  outline: none;
  font-family: var(--font-body);
}

.filter-search-bar input::placeholder,
.blog-search-bar input::placeholder,
.tipps-search-bar input::placeholder {
  color: #908070;
  font-style: italic;
}

/* ===== FEATURES / TIPS LISTS / ICON LISTS ===== */
.features ul, .tips-list, .values ul, .faqs ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features ul li, .tips-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  gap: 12px;
  color: var(--clr-primary);
  font-family: var(--font-body);
  background: none;
}
.features ul li img, .tips-list li img, .contact-information p img {
  width: 29px;
  min-width: 29px;
  height: 29px;
  margin-right: 7px;
  vertical-align: middle;
}

/* ===== PAGINATION CONTROLS ===== */
.pagination-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  margin-top: 16px;
}
.pagination-controls span {
  color: #7d6d54;
  font-size: 0.98rem;
}
.pagination-controls a {
  font-weight: 600;
  color: var(--clr-secondary);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  background: #fffbe9;
  transition: background .18s, color .18s;
}
.pagination-controls a:hover {
  background: var(--clr-secondary);
  color: var(--clr-primary);
}

/* ===== CONTACT / LOCATION CARDS ===== */
.contact-information, .opening-hours, .address, .public-transport-info {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-information p, .opening-hours p, .address p, .public-transport-info ul {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.public-transport-info h3 {
  font-size: 1.10rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--clr-accent);
  border-top: 4px solid var(--clr-secondary);
  margin-top: 60px;
  padding: 32px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #85693B;
  opacity: .96;
  padding: 5px 4px 5px 4px;
  transition: color .16s;
}
.footer-nav a:hover { color: var(--clr-secondary); }
.footer-contact {
  font-size: .98rem;
  color: #5C4F32;
  font-family: var(--font-body);
}
.footer-logo {
  margin-top: 4px;
}
.footer-logo img {
  width: 72px;
  height: auto;
  opacity: 0.86;
}

@media (max-width: 780px) {
  footer .container {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
  .footer-nav { gap: 10px; }
}

/* ===== LEGAL SECTIONS, LISTS ===== */
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal ul li {
  margin-left: 12px;
  padding-left: 8px;
  position: relative;
}
.legal ul li:before {
  content: '\2022';
  color: var(--clr-secondary);
  margin-right: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1240px) {
  .container { max-width: 1000px; }
}
@media (max-width: 900px) {
  html { font-size: 96%; }
  .container { max-width: 780px; }
}
@media (max-width: 600px) {
  .container { max-width: 98vw; }
  .section { padding: 24px 8px; }
  .card {
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
}

@media (max-width: 780px) {
  .content-wrapper, .section, .hero, .newsletter, .highlights, .blog-preview, .about, .values, .testimonials, .location, .contact, .blog-hero, .blog-listing, .tips-features, .faqs, .danke, .legal {
    padding: 20px 3vw;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
  }
  .footer-contact, .footer-logo { font-size: .95em; }
}

/* ===== MICRO-INTERACTIONS, TRANSITIONS ===== */
button, .btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .18s, color .18s, box-shadow .18s, transform .17s;
}
.card,
.recipe-teasers > div, .category-grid > div, .blog-post-teasers > div, .recipe-cards > div,
.testimonial-card,
.btn-primary, .btn-secondary {
  transition: box-shadow .19s, background .19s, transform .17s;
}
input[type="text"] {
  transition: box-shadow .12s, border-color .12s;
}
input[type="text"]:focus {
  box-shadow: 0 0 0 3px #D3A86950;
  border-radius: var(--radius-sm);
}

/* ===== ARTISTIC/CREATIVE BRAND ELEMENTS ===== */
h1, h2, h3, .btn-primary, .btn-secondary {
  text-shadow: 0 2px 8px #F8F5F1, 0 1px 0 #DEC28418;
}
.card {
  border: 2.5px solid #F8F5F1;
  border-bottom: 2.5px solid #D3A869;
}
.recipe-teasers > div, .category-grid > div, .blog-post-teasers > div, .recipe-cards > div {
  border-left: 5px solid #D3A869;
  border-bottom: 2px dashed #edddaa;
}

/* ===== LISTS FOR FAQ ===== */
.faqs ul {
  margin-top: 8px;
  padding-left: 8px;
}
.faqs ul li {
  padding: 15px 0 15px 0;
  font-size: 1.08rem;
  border-bottom: 1px dashed #F5DAC2;
}
.faqs ul li strong {
  color: var(--clr-primary);
}

/* ===== SPECIAL SECTIONS ===== */
.newsletter p, .newsletter div p, .about p {
  font-size: 1.13rem;
  font-style: italic;
  color: #64512B;
}

.danke {
  background: #fffce7;
}
.danke ul {
  margin: 14px 0 16px 0;
  padding: 0 0 0 10px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.danke ul li::before {
  content: '✓';
  color: var(--clr-success);
  margin-right: 9px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe9;
  color: var(--clr-primary);
  border-top: 3px solid var(--clr-secondary);
  box-shadow: 0 -4px 32px rgba(211,168,105,.20);
  padding: 24px 20px;
  z-index: 4000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.04em;
  animation: cookie-banner-in .44s cubic-bezier(.84,.08,1,.82);
}
@media (max-width: 780px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 6vw;
  }
}
@keyframes cookie-banner-in {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== COOKIE CONSENT POPUP (MODAL) ===== */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(54,44,14,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .23s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: #fffbe9;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  min-width: 320px;
  max-width: 93vw;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-pop-in .44s cubic-bezier(.83,.1,.66,.97);
}
@keyframes cookie-pop-in {
  0% { opacity: 0; transform: scale(.85) translateY(100px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--clr-primary);
}
.cookie-category-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 3px 0;
}
.cookie-category-toggle label {
  font-size: 1rem;
  margin-left: 7px;
}
.cookie-switch {
  width: 40px;
  height: 24px;
  border-radius: 12px;
  background: #eee6d2;
  position: relative;
  margin-right: 5px;
  transition: background .2s;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-switch[data-checked="true"] {
  background: var(--clr-secondary);
}
.cookie-switch-knob {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px #dcc78044;
  transition: left .19s;
}
.cookie-switch[data-checked="true"] .cookie-switch-knob {
  left: 18px;
  background: var(--clr-primary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 10px;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.fw-bold { font-weight: 700; }
.fw-light { font-weight: 300; }
.italic { font-style: italic; }

/* ===== PRINT SUPPORT ===== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body { background: #fff !important; }
}

/* ===== CREATIVE/ARTISTIC FLAIR – DETAILS ===== */
.section {
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  position: absolute;
  top: -25px; left: -18px;
  width: 70px; height: 70px;
  background: radial-gradient(ellipse at left bottom, #ffeabc 35%, #f8f5f100 100%);
  border-radius: 50%;
  z-index: 0;
  opacity: .33;
  pointer-events: none;
}
@media (max-width: 700px) {
  .section:before { width: 40px; height: 40px; }
}

.card:after {
  content: '';
  position: absolute;
  right: 18px; bottom: 15px;
  width: 28px; height: 28px;
  background: radial-gradient(circle,#D3A86944 55%,#F8F5F1 100%);
  border-radius: 12px 20px 22px 12px;
  z-index: 0;
  pointer-events: none;
}
.blog-post-teasers > div:after,
.recipe-cards > div:after,
.recipe-teasers > div:after {
  content: '';
  position: absolute;
  left: 14px; bottom: 12px;
  width: 32px; height: 18px;
  background: linear-gradient(90deg,#D3A86922 30%, #F8F5F1 100%);
  border-radius: 12px 8px 25px 10px;
  z-index: 0;
  pointer-events: none;
}

/* ===== ACCESSIBILITY ===== */
.testimonial-card {
  color: #222;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
}

/* ===== CLOSE BUTTONS HOVER ===== */
.mobile-menu-close {
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--clr-secondary);
  color: #fff;
}

/* ===== END ===== */
