/* ---------- CSS RESET & NORMALIZE ---------- */
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, menu, 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;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  color: #23292F;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 1.2em;
}
li {
  margin-bottom: 12px;
  list-style: none;
}

/* ---------- BRAND FONTS ---------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #23292F;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}

p, li, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #23292F;
  font-size: 1rem;
}
blockquote {
  border-left: 4px solid #E07A22;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 16px;
  background: #fff9f4;
  font-style: italic;
  margin-bottom: 24px;
}
blockquote span {
  display:block;
  color:#E07A22;
  font-weight: 600;
  margin-top:8px;
}

/* ---------- COLORS ---------- */
:root {
  --primary: #23292F;
  --secondary: #F5F7FA;
  --accent: #E07A22;
  --accent-light: #FFB76B;
  --blue: #3CD3E5;
  --pink: #F9316F;
  --electric-green: #18F0A2;
  --electric-yellow: #FFE900;
  --shadow: rgba(35,41,47,0.08);
}


/* ---------- LAYOUT CONTAINERS ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px 20px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 310px;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 36px var(--shadow), 0 2px 20px rgba(224, 122, 34, 0.09);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.products-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1 1 300px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  min-width: 230px;
  transition: box-shadow 0.14s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.products-list > div:hover {
  box-shadow: 0 10px 36px var(--accent-light);
  transform: translateY(-4px) scale(1.03);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #F5F7FA;
  border-left: 6px solid var(--accent);
  border-radius: 12px;
  font-size: 1.06rem;
  box-shadow: 0 4px 12px var(--shadow);
  color: #23292F;
  font-weight: 600;
  position: relative;
  transition: box-shadow 0.18s;
}
.testimonial-card strong {
  color: var(--accent);
  margin-bottom: 2px;
}

/* ---------- BADGES/TAGS ---------- */
.badge.new {
  background: var(--electric-yellow);
  color: var(--primary);
  padding: 3px 14px 3px 10px;
  font-size: 0.95em;
  border-radius: 11px;
  font-weight: bold;
  margin-left: 10px;
}
.category-tag {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 9px;
  font-size: 0.93em;
  margin-left: 7px;
}

/* ---------- CTA BUTTONS ---------- */
.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  border: none;
  border-radius: 22px;
  padding: 14px 38px;
  margin-top: 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px 0 var(--shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.13s;
  position: relative;
}
.cta.primary {
  background: linear-gradient(92deg, var(--accent) 80%, var(--electric-yellow) 100%);
  color: var(--primary);
  box-shadow: 0 8px 26px -8px var(--accent);
}
.cta.secondary {
  background: var(--secondary);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cta:hover, .cta:focus {
  background: linear-gradient(100deg, var(--accent) 70%, var(--pink) 98%);
  color: #fff;
  box-shadow: 0 6px 36px 0 var(--accent-light), 0 2px 16px 0 var(--blue);
  outline: none;
  transform: scale(1.045);
  z-index: 1;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--accent);
  color: #fff;
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  gap: 10px;
  align-items: center;
}
header nav a {
  padding: 8px 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--accent);
  color: #fff;
}
header .cta.primary {
  margin-left: 20px;
}
header img {
  max-height: 44px;
  width: auto;
  margin-right: 14px;
}

/* ---------- MOBILE NAVIGATION ---------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--accent);
  cursor: pointer;
  margin-left: 2px;
  z-index: 110;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover {
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 41, 47, 0.99);
  color: #fff;
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform 0.34s cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--accent);
  padding: 18px 24px 10px 18px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-top: 14px;
  align-items: flex-start;
}
.mobile-nav a {
  width: 100%;
  padding: 18px 30px;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  border-radius: 0 32px 32px 0;
  transition: background 0.14s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}


/* ---------- FOOTER ---------- */
footer {
  background: #23292F;
  color: #fff;
  padding: 54px 0 24px 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0;
}
.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #181C20);
}
.footer-links, .footer-contact, .footer-newsletter {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-links a {
  color: #fff;
  padding: 2px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  transition: color 0.12s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--accent);
}
.footer-contact img {
  margin-right: 9px;
  height: 18px;
  width: 18px;
  vertical-align: middle;
}
.footer-newsletter p {
  font-weight: bold;
  font-size: 1.06rem;
  margin-bottom: 7px;
  color: #fff;
}
.footer-newsletter .cta {
  margin-top: 4px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  opacity: 0.78;
  transition: opacity 0.15s, filter 0.15s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--accent));
}

/* ---------- COOKIES CONSENT BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1300;
  background: #23292F;
  color: #fff;
  padding: 22px 18px 18px 18px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  box-shadow: 0 -8px 30px var(--shadow);
  animation: slideUp 0.7s cubic-bezier(0.77,0,0.18,1);
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner .cookie-message {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  line-height: 1.55;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-direction: row;
}
.cookie-banner .cookie-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 26px;
  margin: 0 5px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  transition: background 0.18s, color 0.16s;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--shadow);
}
.cookie-banner .cookie-btn.settings {
  background: var(--secondary);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--blue);
  color: #23292F;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: var(--accent);
  color: #fff;
}

/* ---------- COOKIE MODAL ---------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,41,47, 0.92);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #23292F;
  border-radius: 16px;
  max-width: 370px;
  width: 90vw;
  box-shadow: 0 8px 32px var(--shadow), 0 4px 18px var(--accent-light);
  padding: 30px 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPop 0.22s cubic-bezier(.36,1.73,.86,.73);
  position: relative;
}
@keyframes modalPop {
  0% { transform:scale(0.96); opacity: 0.2; }
  100%{ transform:none; opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.29rem;
  color: var(--accent);
}
.cookie-modal label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-right: 13px;
  font-size: 1.01rem;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-modal-category {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--accent);
  cursor: pointer;
  z-index: 1;
}


/* ---------- MISC UTILS & SPACING ---------- */
.privacy-notice, .cookie-preferences, .map-holder {
  background: #fcf4eb;
  color: var(--primary);
  border-radius: 11px;
  padding: 14px 14px 9px 16px;
  font-size: 0.97rem;
  margin-top: 12px;
}
.privacy-notice a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

/* Input accessibility (cookie settings) */
input[type="checkbox"]:disabled {
  accent-color: #E07A22;
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------- RESPONSIVE DESIGN (Mobile First) ---------- */
@media (max-width:1020px) {
  .container {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 880px) {
  .footer-logo img {
    height: 39px;
  }
  .footer-social img {
    width: 24px;
    height: 24px;
  }
  footer .container {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.28rem; }
  .section {
    margin-bottom: 38px;
    padding: 20px 6px;
    border-radius: 13px;
  }
  .testimonial-card, .card, .products-list > div {
    border-radius: 10px;
    padding: 14px 10px 13px 10px;
    min-width: 0;
  }
  .content-grid, .products-list, .card-container {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  .footer-logo img {
    height: 32px;
  }
  .footer-newsletter p {
    font-size: 0.93rem;
  }
  /* Navigation */
  header nav,
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .footer-newsletter, .footer-contact, .footer-links, .footer-logo, .footer-social {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 0;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-bottom: 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 7px 17px 9px;
    gap: 12px;
  }
}

/* ---------- MICRO-INTERACTIONS ---------- */
.card, .products-list > div, .testimonial-card, .cta, .cookie-btn {
  transition: box-shadow 0.18s, background 0.15s, color 0.15s, transform 0.13s;
}

.card:active, .products-list > div:active {
  transform: scale(0.985);
}

.cta:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* ---------- UTILITY CLASSES ---------- */
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.gap-8 { gap: 8px !important; }
.gap-20 { gap: 20px !important; }
.text-center { text-align: center !important; }

/* Fix for no layout overlap */
.section, .card, .products-list > div, .testimonial-card, .feature-item {
  margin-bottom: 24px;
}

/* ---------- END ---------- */
