/* ========================
   Steretrinc Sapori – style.css
   Warm & Friendly Flexbox Design System
   ======================== */

/* --------------
   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;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #F7F2E8;
  color: #34495E;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: #C0392B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #a93226;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

/* --------------
   TYPOGRAPHY
 -------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #C0392B;
  margin-bottom: 16px;
  line-height: 1.12;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p, li {
  font-size: 1rem;
  color: #34495E;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.subheadline {
  font-size: 1.2rem;
  color: #7c3c29;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

strong {
  font-weight: 700;
  color: #A93226;
}

blockquote {
  font-style: italic;
  color: #7c3c29;
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
}
blockquote:before {
  content: '“';
  color: #D35400;
  font-size: 2.4rem;
  position: absolute;
  left: 0;
  top: -10px;
  line-height: 1;
}

.client-name {
  color: #C0392B;
  font-weight: 600;
  margin-top: 10px;
}

/* --------------
   BRAND COLORS
 -------------- */
:root {
  --color-primary: #C0392B;
  --color-primary-dark: #A93226;
  --color-secondary: #34495E;
  --color-accent: #F7F2E8;
  --color-highlight: #FFD9B0;
  --color-success: #059669;
  --color-error: #E74C3C;
  --color-background: #FFF9F3;
}

/* --------------
   UTILITY CLASSES
 -------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 16px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(192,57,43,0.10), 0 1.5px 4px 0 rgba(52,73,94,0.08);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(192,57,43,0.09), 0 0.8px 2px 0 rgba(52,73,94,0.05);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(192,57,43,0.18), 0 3px 12px 0 rgba(52,73,94,0.10);
  transform: translateY(-2px) scale(1.012);
}

.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;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(192,57,43,0.12);
  padding: 20px;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 500px;
  border-left: 6px solid var(--color-primary);
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 20px 0 rgba(192,57,43,0.2);
}

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

/* --------------
   HEADER & NAV
 -------------- */
header {
  background: #FFF;
  box-shadow: 0 1.5px 8px 0 rgba(52,73,94,0.05);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 16px 12px 16px;
}
header img {
  height: 48px;
  border-radius: 12px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 9px;
  color: #34495E;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:active, .main-nav a:focus {
  background: var(--color-highlight);
  color: #C0392B;
}
.cta-btn {
  background: #C0392B;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 26px;
  border: none;
  border-radius: 36px;
  font-size: 1.12rem;
  box-shadow: 0 2px 10px 0 rgba(192,57,43,0.10);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-left: 12px;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A93226;
  box-shadow: 0 6px 18px 0 rgba(192,57,43,0.20);
  transform: translateY(-1px) scale(1.025);
  color: #FFF;
}

/* HAMBURGER/MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #C0392B;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover {
  background: var(--color-highlight);
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(240, 232, 218, 0.99);
  z-index: 1010;
  transform: translateX(100%);
  transition: transform 0.44s cubic-bezier(.7,.14,.5,1.02);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--color-primary);
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  cursor: pointer;
  padding: 10px 18px 2px 0;
  margin: 0 0 16px 0;
  transition: background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-highlight);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 36px;
  margin-top: 12px;
}
.mobile-nav a {
  padding: 10px 0 10px 0;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #34495E;
  border-radius: 9px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C0392B;
  background: var(--color-highlight);
}
@media (max-width: 990px) {
  .mobile-menu {
    display: flex;
  }
}

/* --------------
   HERO SECTIONS
 -------------- */
.hero {
  background: linear-gradient(98deg, #FFD9B0 0%, #F7F2E8 68%);
  border-radius: 22px;
  padding: 48px 0 52px 0;
  margin-bottom: 40px;
  box-shadow: 0 2px 24px 0 rgba(192,57,43, 0.07), 0 2px 10px 0 rgba(52,73,94, 0.04);
}
.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: left;
  gap: 18px;
  flex: 1;
  align-items: flex-start;
  max-width: 650px;
}
@media (max-width: 768px) {
  .hero {
    padding: 26px 0 32px 0;
    margin-bottom: 24px;
    border-radius: 0;
  }
  .hero .container {
    flex-direction: column;
    padding: 0 6px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
}

/* --------------
   FEATURES/BENEFITS
 -------------- */
.features, .about-preview, .services-preview, .recipes-preview, .blog-preview, .cta, .policy, .newsletter, .success {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(192,57,43,0.10), 0 1.5px 4px 0 rgba(52,73,94,0.08);
}
.features ul, .about-preview ul, .services-preview ul, .recipes-preview ul, .blog-preview ul, .newsletter ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.features ul li, .about-preview ul li, .services-preview ul li, .recipes-preview ul li, .blog-preview ul li, .newsletter ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  font-size: 1.06rem;
}
.features ul li img {
  width: 28px;
  height: 28px;
  background: var(--color-highlight);
  padding: 4px;
  border-radius: 50%;
}

.categories-list, .dietary-filters, .featured-tags, .filter-by-difficulty {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 10px 0 14px 0;
}
.categories-list span, .dietary-filters span, .featured-tags span, .filter-by-difficulty span {
  background: var(--color-highlight);
  color: #C0392B;
  padding: 6px 18px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.categories-list span:hover, .dietary-filters span:hover, .featured-tags span:hover, .filter-by-difficulty span:hover {
  background: #ffd6a1;
  color: #A93226;
}

/* --------------
   SEARCH BAR
 -------------- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  width: 100%;
}
.search-bar input {
  border: 1.5px solid #ffd9b0;
  border-radius: 16px 0 0 16px;
  padding: 9px 16px;
  font-size: 1.07rem;
  background: #fff;
  transition: border 0.18s;
  outline: none;
  width: 210px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.search-bar input:focus {
  border-color: #C0392B;
}
.search-bar button {
  border: none;
  background: #C0392B;
  padding: 8px 18px 8px 10px;
  border-radius: 0 16px 16px 0;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  height: 39px;
}
.search-bar button img {
  width: 20px;
  height: 20px;
  filter: invert(100%) sepia(10%) saturate(340%) hue-rotate(351deg) brightness(104%) contrast(90%);
}
.search-bar button:hover {
  background: #A93226;
}
@media (max-width: 540px) {
  .search-bar input {
    width: 100%;
    min-width: 0;
    font-size: 0.95rem;
  }
  .search-bar {
    flex-direction: column;
    gap: 7px;
    align-items: flex-stretch;
  }
}

/* --------------
   CARD LAYOUTS
 -------------- */
.recipe-cards-grid, .video-cards-grid, .article-cards-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
}
.recipe-cards-grid li, .video-cards-grid li, .article-cards-grid li, .services-grid li {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 330px;
  background: #FFF;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px 0 rgba(52,73,94,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
  margin-bottom: 20px;
  border: 1px solid #ffd9b0;
}
.recipe-cards-grid li:hover,
.video-cards-grid li:hover,
.article-cards-grid li:hover,
.services-grid li:hover {
  box-shadow: 0 6px 18px 0 rgba(192,57,43,0.14);
  border-color: #C0392B;
}
.price {
  color: #059669;
  font-weight: bold;
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .recipe-cards-grid li, .video-cards-grid li, .article-cards-grid li, .services-grid li {
    min-width: 160px;
    max-width: 100%;
    flex: 1 1 90vw;
  }
  .recipe-cards-grid, .video-cards-grid, .article-cards-grid, .services-grid {
    gap: 16px;
  }
}

@media (max-width: 650px) {
  .recipe-cards-grid, .video-cards-grid, .article-cards-grid, .services-grid {
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
  }
}

/* --------------
   PAGINATION
 -------------- */
.pagination-controls {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 8px;
  margin-top: 12px;
}
.pagination-controls button {
  border: none;
  background: var(--color-highlight);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 7px 17px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.pagination-controls button:hover, .pagination-controls button:focus {
  background: #ffd6a1;
  color: var(--color-primary-dark);
  box-shadow: 0 2px 5px 0 rgba(192,57,43,0.09);
}

/* --------------
   FOOTER
 -------------- */
footer {
  background: #fff;
  border-top: 4px solid var(--color-highlight);
  margin-top: 32px;
  padding-top: 10px;
  box-shadow: 0 -2px 24px 0 rgba(52,73,94,0.07);
  position: relative;
  z-index: 1;
}
footer .container {
  padding: 20px 16px 6px 16px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
footer .contact-info {
  flex: 1 1 260px;
  min-width: 180px;
  max-width: 340px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .contact-info img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  padding: 2px;
}
footer .contact-info a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.18s;
}
footer .contact-info a:hover {
  color: var(--color-primary-dark);
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 135px;
  font-size: 1rem;
}
.footer-menu a {
  color: #34495E;
  transition: color 0.18s;
  border-radius: 8px;
  padding: 6px 10px 6px 4px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #C0392B;
  background: var(--color-highlight);
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
}
.social-links a img {
  width: 32px;
  height: 32px;
  background: var(--color-highlight);
  padding: 6px;
  border-radius: 50%;
  transition: box-shadow 0.15s;
  box-shadow: 0 1.5px 5px 0 rgba(192,57,43,0.09);
}
.social-links a:hover img,
.social-links a:focus img {
  box-shadow: 0 4px 12px 0 rgba(192,57,43,0.20);
}
.copyright {
  font-size: 0.95rem;
  color: #AAA;
  margin-top: 8px;
  text-align: center;
}

/* --------------
   FORM ELEMENTS
 -------------- */
input, textarea, select {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  border-radius: 14px;
  border: 1px solid #ffd9b0;
  padding: 9px 14px;
  margin-bottom: 12px;
  font-size: 1.03rem;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #C0392B;
  box-shadow: 0 3px 15px 0 rgba(192,57,43,0.10);
}
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 18px;
  cursor: pointer;
}

/* --------------
   TESTIMONIALS
 -------------- */
.testimonials {
  background: var(--color-highlight);
  border-radius: 18px;
  margin-bottom: 44px;
  box-shadow: 0 4px 16px 0 rgba(192,57,43,0.08);
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 13px;
    font-size: 0.98rem;
  }
}

/* --------------
   CTA SECTIONS / MODALS
 -------------- */
.cta {
  background: #FFD9B0;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(192,57,43,0.11);
  text-align: left;
}
.cta h2 {
  color: #34495E;
  margin-bottom: 12px;
}

.newsletter ul {
  margin-bottom: 12px;
  margin-left: 0;
  gap: 10px;
}

.success {
  background: #fff0e8;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(192,57,43,0.13);
}

/* --------------
   POLICY
 -------------- */
.policy {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 15px 0 rgba(192,57,43,0.09);
}
.policy h1, .policy h2 {
  color: #C0392B;
}
.policy ul {
  margin-left: 22px;
  margin-bottom: 8px;
}
.policy li {
  margin-bottom: 6px;
  list-style: inside disc;
}

/* --------------
   BUSINESS HOURS
 -------------- */
.business-hours {
  background: var(--color-highlight);
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 8px;
  box-shadow: 0 1.5px 7px 0 rgba(192,57,43,0.06);
}

/* --------------
   RESPONSIVE GLOBAL
 -------------- */
@media (max-width: 430px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.13rem; }
}

/* --------------
   COOKIE CONSENT BANNER
 -------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff9f3;
  box-shadow: 0 -3px 24px 0 rgba(192,57,43,.19);
  border-top: 3px solid #FFD9B0;
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  transition: transform .38s;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-content {
  flex: 1;
  font-size: 1rem;
  color: #34495E;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  border: none;
  border-radius: 22px;
  padding: 9px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .16s;
}
.cookie-btn {
  background: #C0392B;
  color: #fff;
  margin-right: 0;
  box-shadow: 0 1.5px 7px 0 rgba(192,57,43,0.10);
}
.cookie-btn:hover {
  background: #A93226;
}
.cookie-settings-btn {
  background: var(--color-highlight);
  color: #C0392B;
  border: 1px solid #ffd9b0;
}
.cookie-settings-btn:hover {
  background: #F7F2E8;
}
.cookie-cancel-btn {
  background: #fff;
  color: var(--color-error);
  border: 1px solid #ffd9b0;
  border-radius: 22px;
  padding: 9px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0;
  transition: background .16s, color .16s;
}
.cookie-cancel-btn:hover {
  background: #ffe5df;
  color: #C0392B;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 6px 12px 6px;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(60,40,17,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10010;
  transition: opacity 0.18s;
  opacity: 1;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff9f3;
  border-radius: 16px;
  box-shadow: 0 4px 26px 0 rgba(192,57,43,0.13);
  max-width: 400px;
  min-width: 240px;
  padding: 32px 22px 22px 22px;
  z-index: 10012;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  animation: modalIn .32s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
@keyframes modalIn {
  0% { transform: translateY(60px) scale(0.96); opacity: 0; }
  90% { opacity: .97; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0;
}
.cookie-modal-category input[type=checkbox]:disabled + label {
  color: #aaa;
  font-style: italic;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #C0392B;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: #C0392B;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 3px 9px;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-modal-close:hover {
  background: #FFD9B0;
}

/* --------------
   ANIMATIONS & TRANSITIONS
 -------------- */
@media (hover: hover) and (pointer: fine) {
  .cta-btn, .main-nav a, .footer-menu a, .pagination-controls button, .card, .recipe-cards-grid li, .services-grid li, .article-cards-grid li, .video-cards-grid li, .categories-list span, .featured-tags span, .search-bar button, .mobile-nav a, .cookie-btn, .cookie-settings-btn, .cookie-cancel-btn {
    transition: box-shadow 0.22s, background 0.20s, color 0.18s, transform 0.20s;
  }
}

/* --------------
   SCROLLBAR
 -------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #ffeeda;
}
::-webkit-scrollbar-thumb {
  background: #FFD9B0;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C0392B;
}

/* --------------
   PRINT
 -------------- */
@media print {
  header, nav, .main-nav, .mobile-menu, .footer-menu, .social-links, .cookie-banner, .cookie-modal-bg {
    display: none !important;
  }
  body { background: #fff; }
  .container { max-width: 100vw; padding: 0; }
}
