/* CSS RESET & BASE TYPOGRAPHY */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
* {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 0 0 12px 24px;
}
a {
  color: #181818;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23435C;
  text-decoration: none;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  color: #181818;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  color: #222;
}
strong {
  font-weight: 700;
  color: #181818;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  width: 100%;
  flex: 1;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARDS, FLEX WRAPS, SPACINGS */
.feature-grid, .value-grid, .product-grid, .blog-list, .featured-recipes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  padding: 32px 24px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,25,25,0.11);
  transform: translateY(-2px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item, .value-item, .product-item, .blog-teaser, .recipe-item {
  background: #fafbfc;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 270px;
  position: relative;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.feature-item:hover, .value-item:hover, .product-item:hover, .blog-teaser:hover {
  box-shadow: 0 6px 26px 0 rgba(35,43,92,0.09);
  border-color: #23435C;
}

/***** FLEX PATTERNS FROM SPEC *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-left: 6px solid #23435C;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border-color 0.2s;
}
.testimonial-card strong {
  font-size: 1.1rem;
  color: #23435C;
}
.testimonial-card p {
  color: #262626;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card img {
  margin-bottom: 6px;
  margin-top: 0;
}

/* BREADCRUMBS */
.breadcrumb {
  font-size: 0.97rem;
  margin-bottom: 12px;
  color: #8b919c;
  display: flex;
  align-items: center;
}
.breadcrumb a {
  color: #23435c;
  text-decoration: underline;
  transition: color 0.12s;
}
.breadcrumb a:hover {
  color: #EBA731;
}

/* BUTTONS & CALL TO ACTIONS */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 13px 38px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.12);
  outline: none;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.13s, box-shadow 0.16s, transform 0.16s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #23435C;
  color: #fff;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 18px 0 rgba(25,25,25,0.17);
}

.read-more {
  display: inline-block;
  font-size: 1rem;
  color: #23435C;
  border-bottom: 1.5px solid #23435C;
  padding-bottom: 2px;
  transition: all 0.16s;
  text-decoration: none;
  font-weight: 500;
  margin-top: 6px;
}
.read-more:hover {
  color: #EBA731;
  border-color: #EBA731;
}

input[type="text"], input[type="email"], input[type="password"], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #181818;
  background: #fbfbfc;
  padding: 11px 14px;
  border: 1px solid #d7d8d9;
  border-radius: 6px;
  outline: none;
  transition: border 0.13s, box-shadow 0.15s;
}
input[type="text"]:focus, textarea:focus {
  border-color: #23435C;
  box-shadow: 0 3px 10px 0 rgba(35, 67, 92, 0.06);
}

button {
  font-family: inherit;
}

/* HEADER, LOGO, NAVIGATION */
header {
  background: #fff;
  border-bottom: 1.5px solid #ececec;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.17s;
  margin-right: 8px;
}
/* Main nav */
.main-nav {
  display: flex;
  gap: 23px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #181818;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 6px 0 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #23435C;
  border-bottom: 2px solid #23435C;
}

header .cta-primary {
  margin-left: 12px;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #181818;
  cursor: pointer;
  margin-left: 8px;
  z-index: 110;
  padding: 8px 14px 8px 10px;
  border-radius: 5px;
  transition: background 0.16s;
}
header .mobile-menu-toggle:hover,
header .mobile-menu-toggle:focus {
  background: #efefef;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.27s cubic-bezier(.33,.92,.77,1.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px 32px 26px;
  box-shadow: -4px 0 26px 0 rgba(0,0,0,0.15);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #fff;
  border: none;
  color: #181818;
  font-size: 2rem;
  margin-bottom: 12px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.13s;
  z-index: 1001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #f4f4f4;
  color: #23435C;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  padding: 16px 0 8px 0;
  font-size: 1.18rem;
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
  border-bottom: 1px solid #ebebeb;
  transition: color 0.13s, border 0.16s;
  touch-action: manipulation;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: #EBA731;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
  }
  header .cta-primary {
    padding: 13px 21px;
  }
  .feature-item, .value-item, .product-item {
    min-width: 200px;
    padding: 17px 10px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  header .cta-primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
  .header .container, .container {
    padding: 0 10px;
  }
}

/* MAIN SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 0 38px 0;
}
@media (max-width: 700px) {
  section {
    margin-bottom: 32px;
    padding: 24px 0 22px 0;
  }
}

/* CARDS & INFO BLOCKS */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.value-item {
  flex: 1 1 220px;
  max-width: 340px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.product-item ul {
  margin-top: 8px;
  padding-left: 18px;
  margin-bottom: 0;
  font-size: 0.99rem;
}
.product-item ul li {
  color: #23435C;
  margin-bottom: 4px;
}

.featured-recipes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.recipe-item {
  flex: 1 1 240px;
  max-width: 350px;
  padding: 20px 14px;
  background: #fafbfc;
  border-radius: 12px;
  border: 1px solid #efefef;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.03);
}

.usage-guides {
  background: #f0f1f2;
  border-left: 4px solid #23435C;
  padding: 18px 22px;
  border-radius: 8px;
  margin: 18px 0 0 0;
}

/* BLOG */
.blog-list {
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 13px;
}
.blog-teaser {
  min-width: 260px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 4px solid #181818;
}
.blog-categories {
  margin-top: 30px;
}
.blog-categories h4 {
  font-size: 1rem;
  color: #23435C;
}
.blog-categories ul {
  margin-left: 18px;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}
.blog-search input[type="text"] {
  flex: 1 1 180px;
  background: #fafbfc;
}
.blog-search button {
  background: #23435C;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
}
.blog-search button img {
  height: 20px;
  width: 20px;
  filter: invert(1);
}

/**** FAQ ****/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.faq-item {
  background: #fafbfc;
  border-radius: 10px;
  border: 1px solid #e9e9ea;
  box-shadow: 0 1px 7px 0 rgba(0,0,0,0.02);
  flex: 1 1 260px;
  margin-bottom: 20px;
  padding: 19px 18px;
  min-width: 220px;
}

/**** THANK YOU MESSAGE ****/
.thankyou-message {
  background: #fbfbfc;
  padding: 28px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.05);
  margin-top: 18px;
}
.thankyou-message ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #23435C;
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  flex-direction: column;
}
.contact-details p {
  margin-bottom: 11px;
  font-size: 1.13rem;
  color: #181818;
}
.contact-details img {
  margin-right: 7px;
  vertical-align: middle;
  height: 19px;
  width: 19px;
}

/* FOOTER */
footer {
  background: #181818;
  color: #f8f8fa;
  padding: 40px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  padding-bottom: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 5px;
}
.footer-nav a {
  color: #f8f8fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: #EBA731;
}

.contact-footer {
  font-size: 0.96rem;
  color: #e0e0e0;
}
.contact-footer img {
  vertical-align: middle;
  margin-right: 7px;
  height: 16px;
  width: 16px;
}

footer .logo img {
  height: 36px;
}

@media (max-width: 700px) {
  footer .container {
    gap: 16px;
    padding-bottom: 18px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  .contact-footer {
    font-size: 0.9rem;
  }
}

/* MONOCHROME SOPHISTICATED STYLE */
body, .feature-item, .value-item, .faq-item, .card, .testimonial-card, .recipe-item, .thankyou-message, .product-item, .blog-teaser, .blog-search input {
  background: #fff;
}

h1, h2, h3, h4, h5 {
  color: #181818;
}

section, .content-wrapper {
  background: #fff;
}

.feature-item, .value-item, .faq-item, .card, .testimonial-card, .product-item, .blog-teaser, .recipe-item {
  border-radius: 14px;
}

hr {
  border: none;
  border-top: 1px solid #ececec;
  margin: 30px 0;
}

/***** COOKIE CONSENT BANNER *****/
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #181818;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  z-index: 1200;
  box-shadow: 0 -2px 18px 0 rgba(40,40,40,0.10);
  transition: transform 0.35s cubic-bezier(.33,.92,.77,1.1), opacity 0.25s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner.closed {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
#cookie-banner .cookie-text {
  flex: 1 1 auto;
  font-size: 1.05rem;
  margin-right: 20px;
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border-radius: 24px;
  padding: 10px 28px;
  margin: 0 0 0 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.15s;
}
.cookie-accept {
  background: #23435C;
  color: #fff;
  border: none;
}
.cookie-accept:hover {
  background: #EBA731;
  color: #181818;
}
.cookie-reject {
  background: #fff;
  color: #181818;
  border: 1.5px solid #dee4e1;
}
.cookie-reject:hover {
  background: #DEE4E1;
  color: #181818;
}
.cookie-settings {
  background: transparent;
  color: #DEE4E1;
  border: none;
}
.cookie-settings:hover {
  color: #EBA731;
}

/* COOKIE PREFERENCES MODAL */
#cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1250;
  opacity: 1;
  transition: opacity 0.22s;
}
#cookie-modal.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #181818;
  border-radius: 17px;
  max-width: 420px;
  width: 90vw;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 6px 34px 0 rgba(30,36,52,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  flex: 1;
}
.cookie-category .toggle {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #DEE4E1;
  position: relative;
  margin-left: 14px;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-category .toggle input {
  display: none;
}
.cookie-category .toggle:after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(35,67,92,0.10);
  transition: left 0.18s, background 0.13s;
}
.cookie-category .toggle.on {
  background: #23435C;
}
.cookie-category .toggle.on:after {
  left: 21px;
  background: #DEE4E1;
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #8a8a8a;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover {
  color: #23435C;
}

/******* MISC ALIGNMENTS & FLEX WRAPS ******/
@media (max-width: 1050px) {
  .feature-grid, .product-grid, .value-grid, .faq-list, .blog-list, .featured-recipes {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .product-grid, .value-grid, .faq-list, .blog-list, .featured-recipes {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .value-item, .product-item, .faq-item, .blog-teaser {
    min-width: unset;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 12px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-wrapper, .container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 6px;
  }
}

/**** UTILITY CLASSES ****/
.mt-2 { margin-top: 14px; }
.mb-2 { margin-bottom: 14px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/**** ELEGANT MICRO-INTERACTIONS ****/
.card, .feature-item, .value-item, .product-item, .recipe-item, .blog-teaser, .faq-item, .testimonial-card {
  transition: box-shadow 0.17s, border 0.16s, transform 0.15s;
}
.card:hover, .feature-item:hover, .value-item:hover, .product-item:hover, .blog-teaser:hover, .faq-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(35,67,92,0.11);
  transform: translateY(-2px) scale(1.012);
}

.cta-primary, .cookie-btn {
  transition: background 0.15s, color 0.16s, transform 0.13s;
}

/****** ACCESSIBILITY & CONTRAST ******/
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #181818;
  background: #fff;
}

/******* END OF CSS ******/
