/* ------------------------------
   Kochkunstmeister | Luxury Premium CSS Theme
   Modern, inspiring, luxury aesthetic
   Brand colors: #234E52 (primary), #F2A541 (secondary/gold), #FFF8F0 (accent background)
   Fonts: Montserrat (display), Roboto (body)
-----------------------------------*/

/* CSS RESET & 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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF8F0;
  color: #212529;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #234E52;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2A541;
}
button, input, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #e1dedb;
  outline: none;
}

/* FONTS ------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, .logo {
  font-family: 'Montserrat', Arial, sans-serif;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #234E52;
  letter-spacing: -1px;
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #234E52;
}
@media (max-width: 600px) {
  h2 { font-size: 1.5rem; }
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #234E52;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
  color: #234E52;
}
p, li, a, input, select, label, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #212529;
}
.subheadline {
  font-size: 1.25rem;
  color: #394d48;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* LUXURY PREMIUM COLORS ----------------*/
:root {
  --color-primary: #234E52;
  --color-gold: #F2A541;
  --color-accent: #FFF8F0;
  --color-dark-heading: #1b292b;
  --color-card-bg: #ffffff;
  --color-card-shadow: rgba(35, 78, 82, 0.09);
  --color-border: #e2dcc7;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* LAYOUT CONTAINERS -------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  /* Responsive horizontal centering */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 30px 8px;
  }
}

/* HEADER & NAVIGATION -----------------*/
header {
  background: #fff;
  box-shadow: 0 3px 12px -5px var(--color-card-shadow);
  border-bottom: 1px solid var(--color-border);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}
.logo img {
  height: 40px;
  width: auto;
  margin-right: 16px;
  vertical-align: bottom;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 36px;
}
.main-nav a {
  font-size: 1rem;
  font-family: var(--font-body);
  color: #234E52;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding: 2px 0 2px 0;
  transition: border-color .18s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.cta-btn {
  background: var(--color-gold);
  color: #1a2323;
  font-weight: 700;
  font-family: var(--font-display);
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  margin-left: 24px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(242, 165, 65, 0.10);
  transition: background .21s, color .18s, box-shadow .18s, transform .11s;
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD77C;
  color: #234E52;
  box-shadow: 0 4px 14px rgba(242, 165, 65, 0.19);
  transform: translateY(-2px) scale(1.025);
}

/* HIDE ON MOBILE (burger menu) --------*/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #234E52;
  margin-left: 20px;
  cursor: pointer;
  z-index: 50;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle {
    display: block;
    margin-left: 20px;
  }
}

/* MOBILE MENU OVERLAY -----------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 78, 82, 0.98);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.6,0,0.26,1);
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: none;
  border: none;
  color: #F2A541;
  font-size: 2.2rem;
  z-index: 10;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1.2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 35px 0 0 40px;
}
.mobile-nav a {
  color: #FFF8F0;
  font-size: 1.3rem;
  padding: 8px 0;
  font-family: var(--font-display);
  border-bottom: 2px solid transparent;
  letter-spacing: 0.03em;
  transition: color .14s, border .14s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2A541;
  border-bottom: 2px solid #F2A541;
}

/* HERO SECTION ------------------------*/
.hero-section {
  background: linear-gradient(110deg, #FFF8F0 60%, #fffbe6 100%);
  border-bottom: 1px solid #F2A54122;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 380px;
  padding-top: 48px;
  padding-bottom: 24px;
}
.content-wrapper.text-section {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding-left: 0;
}
.hero-section h1 {
  color: #234E52;
  margin-top: 0;
  margin-bottom: 22px;
}
.hero-section .cta-btn {
  margin-top: 24px;
}

/* SECTIONS & FLEX LAYOUTS -------------*/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 var(--color-card-shadow);
  border: 1px solid #efe8dc;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .22s, border-color .17s, transform .13s;
  margin-bottom: 20px;
  flex: 1 1 300px;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(35,78,82,0.22);
  border: 1.5px solid #F2A54199;
  transform: translateY(-3px) scale(1.016);
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID ------------------------*/
.feature-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin: 0;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 11px 0 var(--color-card-shadow);
  border: 1.3px solid #f7e2b2;
  padding: 32px 22px 22px 22px;
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  transition: box-shadow .21s, border-color .18s, transform .13s;
  margin-bottom: 20px;
}
.feature-grid li:hover { box-shadow: 0 7px 24px 0 #f2a54122; border: 1.5px solid #F2A541; }
.feature-grid img { height: 40px; width: auto; }

/* RECIPE & BLOG GRID ------------------*/
.recipe-teasers, .blog-teasers, .recipe-grid, .category-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.recipe-card, .blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-card-shadow);
  border: 1.3px solid #F2A54122;
  padding: 26px 20px 20px 20px;
  flex: 1 1 290px;
  min-width: 250px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border-color .18s, transform .11s;
  position: relative;
}
.recipe-card:hover, .blog-card:hover {
  border-color: #F2A541;
  box-shadow: 0 10px 24px 0 #f2a54116;
  transform: translateY(-2px) scale(1.015);
}
.recipe-card span, .blog-card span {
  color: #687e74;
  font-size: 0.95rem;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.recipe-card a, .blog-card a {
  color: var(--color-primary);
  border-bottom: 1.5px dotted var(--color-gold);
  font-weight: 500;
  padding-bottom: 2px;
  margin-top: 4px;
  width: fit-content;
  transition: color .16s, border-color .13s;
}
.recipe-card a:hover, .blog-card a:hover {
  color: #F2A541;
  border-bottom: 1.5px solid #F2A541;
}
@media (max-width: 800px) {
  .recipe-teasers, .blog-teasers, .recipe-grid, .category-tiles {
    flex-direction: column;
    gap: 18px;
  }
}

.category-tile {
  background: #fff;
  border-radius: 16px;
  border: 1.2px solid #F2A54132;
  box-shadow: 0 2px 9px 0 var(--color-card-shadow);
  padding: 24px 20px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .19s, border-color .15s, transform .09s;
}
.category-tile:hover {
  box-shadow: 0 7px 24px 0 #f2a54122;
  border: 1.5px solid #F2A541;
  transform: translateY(-2px) scale(1.012);
}

/* TRENDING TAGS & QUICK LINKS ---------*/
.trending-tags, .quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px 0;
  align-items: center;
}
.trending-tags strong {
  color: #234E52;
  font-weight: 700;
  font-size: 1rem;
}
.trending-tags a, .quick-links a {
  background: #F2A54120;
  color: #234E52;
  border-radius: 14px;
  padding: 2px 12px 5px 12px;
  font-size: 0.99rem;
  margin-right: 6px;
  transition: background .13s, color .13s;
}
.trending-tags a:hover, .quick-links a:hover {
  background: #F2A541;
  color: #FFF8F0;
}

/* TESTIMONIALS ------------------------*/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1.9px solid #F2A54133;
  border-radius: 18px;
  box-shadow: 0 3.5px 19px 0 #F2A54115;
  padding: 32px 26px 24px 28px;
  flex: 1 1 320px;
  min-width: 240px;
  max-width: 380px;
  margin-bottom: 20px;
  transition: box-shadow .16s, border-color .10s, transform .11s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px 0 #F2A54122;
  border-color: #F2A541;
  transform: translateY(-3px) scale(1.012);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #222c30;
  font-family: var(--font-body);
  margin-bottom: 7px;
  margin-top: 0;
}
.testimonial-card strong {
  color: #F2A541;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* NEWSLETTER AREA ---------------------*/
.newsletter {
  background: #FFEBC8;
  border-radius: 16px;
  box-shadow: 0 2.5px 15px 0 #FFD77C20;
  border: 1.7px solid #F2A54144;
  padding: 36px 20px 29px 32px;
  margin-bottom: 16px;
}
.newsletter .cta-btn {
  margin-top: 18px;
}
.benefits-list {
  list-style: disc;
  margin-left: 21px;
  color: #234E52;
  margin-bottom: 14px;
}

/* CONTACT SECTION ---------------------*/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.contact-info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 13px;
  padding: 11px 15px;
  min-width: 200px;
  border: 1.2px solid #F2A54122;
  font-size: 1rem;
  box-shadow: 0 2px 6px #00000009;
}
.contact-info-box img { height: 27px; width: 27px; margin-right: 7px; }

/* MAP EMBED LIGHT ALTERNATIVE ---------*/
.map-embed {
  margin-top: 22px;
  background: #fff;
  padding: 17px 18px;
  border-radius: 13px;
  border: 1.1px solid #F2A54122;
  box-shadow: 0 1.5px 9px #f7e0b822;
}

/* TEAM SECTION ------------------------*/
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.team-member {
  background: #fff;
  border-radius: 15px;
  border: 1.2px solid #F2A54122;
  box-shadow: 0 2px 9px 0 var(--color-card-shadow);
  padding: 24px 20px;
  min-width: 200px;
  flex: 1 1 230px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .team-section {
    flex-direction: column;
    gap: 14px;
  }
}

/* FILTERS  (REZEPTE GRID) -------------*/
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 28px 0 14px 0;
}
.filters select, .filters input[type=search] {
  border: 1.2px solid #F2A54144;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 1rem;
  margin-right: 8px;
}
.filters label {
  font-weight: 500;
  color: #234E52;
  margin-right: 6px;
}

/* TIPS & FAQ SECTION ------------------*/
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.tip-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px #F2A54116;
  border: 1.2px solid #F2A54122;
  padding: 24px 20px;
  flex: 1 1 230px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow .12s, border-color .12s, transform .08s;
}
.tip-card:hover {
  box-shadow: 0 8px 24px 0 #F2A54122;
  border-color: #F2A541;
  transform: translateY(-2px) scale(1.012);
}
.tip-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.faq-item {
  background: #fff;
  border-left: 4px solid #F2A541;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 9px #f2a54109;
}

/* FOOTER ------------------------------*/
footer {
  background: #234E52;
  color: #FFF8F0;
  padding: 45px 0 9px 0;
  border-top: 6px solid #F2A54133;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #FFF8F0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color .18s, border .14s;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2A541;
  border-bottom: 1.5px solid #F2A541;
}
.footer-contact {
  text-align: center;
  color: #e9e1d4;
  font-size: 0.95rem;
}
footer p { margin-bottom: 5px; }

/* CONFIRMATION SECTION ----------------*/
.confirmation-section {
  background: linear-gradient(108deg, #FFF8F0 84%, #F2A54113 100%);
  border-radius: 16px;
  box-shadow: 0 2.5px 15px 0 #FFD77C12;
  border: 1.7px solid #F2A54120;
  padding: 58px 20px 40px 32px;
  margin-top: 36px;
  margin-bottom: 40px;
}

/* RESPONSIVE LAYOUT ADJUSTMENTS -------*/
@media (max-width: 700px) {
  .container { padding: 0 7px; }
  .feature-grid, .recipe-teasers, .recipe-grid, .category-tiles, .tips-grid, .team-section, .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .category-tile, .tip-card, .recipe-card, .blog-card, .testimonial-card, .team-member {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .newsletter, .confirmation-section {
    padding: 18px 7px 15px 10px;
  }
}

/* MICRO-INTERACTIONS ------------------*/
.card, .tip-card, .category-tile, .testimonial-card, .team-member, .recipe-card, .blog-card {
  transition: box-shadow .16s, border-color .13s, transform .10s;
}

/* FORMS & INPUT FOCUS -----------------*/
input:focus, select:focus, textarea:focus {
  border-color: #F2A541;
  box-shadow: 0 0 0 1.5px #F2A54121;
}

/* BUTTONS GENERAL ---------------------*/
button, .cta-btn, .cookie-btn {
  outline: none;
  cursor: pointer;
  transition: background .17s, color .13s, box-shadow .17s, transform .11s;
}

/* COOKIE CONSENT BANNER ---------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #234E52;
  color: #FFF8F0;
  border-top: 3px solid #F2A541;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 30px 18px 23px 18px;
  z-index: 1000;
  box-shadow: 0 -4.5px 32px #00000035;
  font-size: 1rem;
  animation: cookieBannerFadeIn .67s cubic-bezier(.12,.9,.32,1.01) 1 both;
}
@keyframes cookieBannerFadeIn {
  0%   { transform: translateY(120px); opacity: 0; }
  60%  { opacity: .6; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 2 1 350px;
  color: #FFF8F0;
  font-size: 1.05rem;
  padding-bottom: 10px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-btn {
  background: #F2A541;
  color: #234E52;
  font-weight: 700;
  font-family: var(--font-display);
  border: none;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1rem;
  transition: background .17s, color .13s, box-shadow .11s, transform .09s;
  margin-right: 4px;
}
.cookie-btn:active, .cookie-btn:focus, .cookie-btn:hover {
  background: #FFD77C;
  color: #212529;
}
.cookie-btn-reject {
  background: #fff;
  color: #234E52;
  border: 1.1px solid #F2A541;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #FFD77C;
  color: #234E52;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 7px 16px 8px;
    font-size: 0.93rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* COOKIE MODAL POPUP ------------------*/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1200;
  background: rgba(35, 78, 82, 0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn .6s cubic-bezier(.2,.93,.39,1.08) 1 both;
}
@keyframes cookieModalFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 16px;
  border: 1.7px solid #F2A54144;
  padding: 36px 40px 24px 40px;
  box-shadow: 0 6px 54px #00000033;
  min-width: 320px;
  max-width: 96vw;
  min-height: 220px;
  color: #212529;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 27px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 20px;
  top: 19px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F2A541;
  cursor: pointer;
}
.cookie-modal__title {
  color: #234E52;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal__category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #F2A541;
  border-radius: 5px;
}
.cookie-modal__category label {
  font-size: 1.05rem;
  color: #234E52;
  font-weight: 500;
}
.cookie-modal__category .cookie-modal__lock {
  color: #F2A541;
  font-size: 1.2rem;
  margin-left: 6px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
@media (max-width: 600px) {
  .cookie-modal__dialog {
    padding: 24px 7px 17px 12px;
    min-width: unset;
  }
}

/* UTILITIES ---------------------------*/
.text-section {
  margin-bottom: 22px;
}
ul, ol {
  margin: 0 0 18px 21px;
  font-size: 1rem;
}
li { margin-bottom: 7px; }
strong { font-weight: 700; }

/* Misc.
--------------------------------------*/
::-webkit-scrollbar { width: 10px; background: #fff; }
::-webkit-scrollbar-thumb { background: #234E5220; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #234E5242; }

/* END OF KOCHKUNSTMEISTER LUXURY PREMIUM CSS */