/* ================================================================
   RESET & BASE STYLES
================================================================ */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: none;
  text-decoration: none;
}
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #202225;
  color: #F4F4F6;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #8ED596;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FDFCF5;
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {

  font-weight: 700;
  color: #FDFCF5;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
p {
  margin-bottom: 14px;
  color: #E2E3E3;
}
label {
  display: block;
  font-weight: 600;
  color: #8ED596;
  margin-bottom: 5px;
}

/* ===============
   BRAND COLORS
================ */
:root {
  --col-primary: #225E3B;
  --col-secondary: #8ED596;
  --col-accent: #FDFCF5;
  --col-bg: #202225;
  --col-surface: #272A2F;
  --col-metal: #585B5F;
  --col-shadow: rgba(0,0,0,0.28);
  --col-light: #F4F4F6;
  --col-disabled: #454A4D;
}

/* ================================================================
   FLEX & LAYOUT UTILITIES
================================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--col-surface);
  border-radius: 16px;
  box-shadow: 0 3px 16px var(--col-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--col-surface);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--col-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 5px 18px var(--col-shadow);
}
.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;
  background: #EEE;
  color: #222;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #BBB;
  min-width: 0;
  flex: 1 1 320px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-list, .brand-advantages, .usp-list, .shop-features, .blog-list, .guides-list, .faq-list, .categories-grid, .products-preview, .product-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.features-list > li, .brand-advantages > li, .usp-list > li, .shop-features > li, .team-list > li {
  background: var(--col-metal);
  color: var(--col-accent);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 1px 8px var(--col-shadow);
  flex: 1 1 240px;
  min-width: 220px;
  transition: background 0.18s;
}
.features-list > li:hover, .brand-advantages > li:hover, .usp-list > li:hover, .shop-features > li:hover, .team-list > li:hover {
  background: var(--col-primary);
  color: var(--col-secondary);
}

.product-card, .blog-article, .guide-card, .category-card {
  background: var(--col-metal);
  color: var(--col-light);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--col-shadow);
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.product-card:hover, .blog-article:hover, .guide-card:hover, .category-card:hover {
  background: var(--col-primary);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 5px 18px var(--col-shadow);
}
.category-card img, .product-card img {
  margin-bottom: 10px;
  height: 48px;
  object-fit: contain;
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 0 0;
  align-items: center;
}

/* Testimonials section */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F4F4F6;
  color: #222;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  flex: 1 1 320px;
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #181C1A;
}
.testimonial-card .customer {
  font-size: 1rem;
  color: var(--col-primary);
  font-weight: 600;
  margin-top: 8px;
}

/* Newsletter sign up & Social Links */
.newsletter-signup {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.newsletter-signup input[type="email"] {
  min-width: 200px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--col-bg);
  color: var(--col-accent);
  border: 1px solid var(--col-metal);
  font-size: 1rem;
  transition: border 0.18s;
}
.newsletter-signup input[type="email"]:focus {
  border: 1.5px solid var(--col-secondary);
  outline: none;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.social-links a {
  background: var(--col-primary);
  padding: 8px;
  border-radius: 50%;
  transition: background 0.18s;
}
.social-links a:hover {
  background: var(--col-secondary);
}
.social-links img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 2px #444);
}

/* ================================================================
   HEADER & NAVIGATION
================================================================ */
header {
  background: #181C1A;
  box-shadow: 0 1px 12px var(--col-shadow);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  
  font-weight: 600;
  color: #FDFCF5;
  font-size: 1rem;
  border-radius: 6px;
  padding: 6px 14px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}
header nav a:hover, header nav a:focus {
  background: var(--col-secondary);
  color: #1B3321;
}
.button.primary {
  background: var(--col-primary);
  color: var(--col-accent);
  
  font-weight: 700;
  padding: 10px 30px;
  font-size: 1.05rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 8px var(--col-shadow);
  transition: background 0.17s, color 0.17s, box-shadow 0.2s, transform 0.14s;
  cursor: pointer;
  margin-left: 10px;
  letter-spacing: 0.03em;
  outline: none;
}
.button.primary:hover, .button.primary:focus {
  background: var(--col-secondary);
  color: #1B3321;
  transform: scale(1.03);
  box-shadow: 0 4px 16px var(--col-shadow);
}
.button.secondary {
  background: var(--col-secondary);
  color: #1B3321;
  
  font-weight: 700;
  padding: 9px 25px;
  font-size: 1rem;
  border-radius: 8px;
  margin-left: 0;
  border: none;
  box-shadow: 0 1px 6px var(--col-shadow);
  transition: background 0.16s, color 0.16s, transform 0.14s;
  cursor: pointer;
  outline: none;
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--col-primary);
  color: var(--col-accent);
  transform: scale(1.03);
}
.button.tertiary {
  background: transparent;
  color: var(--col-secondary);
  
  border: 2px solid var(--col-secondary);
  border-radius: 8px;
  font-size: 1rem;
  padding: 8px 18px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  outline: none;
}
.button.tertiary:hover, .button.tertiary:focus {
  background: var(--col-secondary);
  color: #1B3321;
  border-color: var(--col-primary);
}

/* MOBILE BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 25px;
  top: 22px;
  background: var(--col-metal);
  color: #FDFCF5;
  border: none;
  z-index: 1030;
  font-size: 2.1rem;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--col-shadow);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--col-primary);
  color: var(--col-secondary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #23272BEE;
  z-index: 1100;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.91,.03,.39,1.37), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #FDFCF5;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 16px 20px 0 0;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 1110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--col-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}
.mobile-nav a {
  
  font-size: 1.3rem;
  color: var(--col-light);
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid var(--col-metal);
  width: 100%;
  transition: background 0.14s, color 0.14s;
  border-radius: 0;
  display: block;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--col-secondary);
  background: #222;
}

@media (max-width: 1024px) {
  header .container {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header nav, header .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ================================================================
   HERO SECTION
================================================================ */
.hero {
  min-height: 360px;
  background: linear-gradient(120deg, #232627 88%, var(--col-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 36px 0;
  border-radius: 0 0 22px 22px;
  position: relative;
  margin-bottom: 50px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 680px;
  gap: 16px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--col-accent);
  text-shadow: 0 2px 18px rgba(34,34,34,0.3);
}
.hero p {
  color: #E2E3E3;
  font-size: 1.18rem;
}
.hero .button {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 25px 0 16px 0;
    border-radius: 0 0 12px 12px;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: 1.44rem;
  }
}

/* ================================================================
   FOOTER STYLES
================================================================ */
footer {
  background: #151616;
  color: var(--col-accent);
  padding: 55px 0 38px 0;
  margin-top: 80px;
  box-shadow: 0 -2px 8px var(--col-shadow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 160px;
}
.footer-navigation a {
  color: var(--col-secondary);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
  transition: color 0.16s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: var(--col-accent);
}
.footer-brand {
  flex: 1 1 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.footer-brand p {
  color: #EEE;
  font-size: 1.06rem;
}
.footer-contact {
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.footer-contact p {
  color: #CCC;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  filter: grayscale(60%) brightness(1.1);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-contact {
    min-width: 0;
  }
}
@media (max-width: 500px) {
  footer {
    padding: 26px 0 18px 0;
    margin-top: 38px;
  }
  .footer-brand img {
    width: 44px;
    height: 44px;
  }
}

/* ================================================================
   PAGE SECTIONS & RESPONSIVE LAYOUTS
================================================================ */
@media (max-width: 1024px) {
  .content-grid, .card-container, .features-list, .brand-advantages, .usp-list, .shop-features,
  .categories-grid, .products-preview, .team-list, .blog-list, .guides-list, .testimonials, .faq-list {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 22px 6px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section, .features-list, .products-preview, .product-grid, .brand-advantages, .shop-features,
  .categories-grid, .team-list, .testimonials, .blog-list, .guides-list, .faq-list {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch;
  }
  .card, .product-card, .blog-article, .guide-card, .category-card, .testimonial-card, .features-list > li, .brand-advantages > li, .shop-features > li, .usp-list > li, .team-list > li {
    min-width: 0;
    flex: 1 1 100%;
    padding: 19px 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.17rem; }
  h2 { font-size: 1rem; }
  .footer-brand img {
    width: 34px;
    height: 34px;
  }
}

/* ================================================================
   TABLES, INPUTS, FAQ, SELECTS
================================================================ */
select {
  background: var(--col-metal);
  color: var(--col-accent);
  border-radius: 6px;
  border: 1px solid var(--col-primary);
  font-size: 1rem;
  padding: 6px 14px;
  appearance: none;
  min-width: 120px;
  outline: none;
  transition: border 0.15s;
}
select:focus {
  border: 1.5px solid var(--col-secondary);
}
input[type="search"] {
  background: var(--col-bg);
  color: var(--col-accent);
  border: 1px solid var(--col-metal);
  border-radius: 6px;
  font-size: 1rem;
  padding: 8px 14px;
  min-width: 140px;
  margin-left: 12px;
  transition: border 0.18s;
}
input[type="search"]:focus {
  border: 1.5px solid var(--col-secondary);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--col-surface);
  border-radius: 9px;
  padding: 18px 20px;
  box-shadow: 0 1px 6px var(--col-shadow);
  color: var(--col-accent);
  transition: background 0.2s;
}
.faq-item h3 {
  font-size: 1.12rem;
  margin-bottom: 5px;
  color: var(--col-secondary);
}

/* Thank You Actions */
.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

/* ================================================================
   COOKIE CONSENT BANNER & MODAL
================================================================ */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #212425;
  color: #FDFCF5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px 20px 10px;
  box-shadow: 0 -2px 12px rgba(16,16,16,0.18);
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  transition: transform 0.3s cubic-bezier(.76,.02,.28,.74), opacity 0.18s;
  gap: 24px;
}
#cookie-consent-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-consent-banner .cookie-consent-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-btn {
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 1.04rem;
  
  font-weight: 700;
  margin: 5px 0;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.cookie-consent-btn.accept {
  background: var(--col-primary);
  color: var(--col-accent);
}
.cookie-consent-btn.accept:hover { background: var(--col-secondary); color: #181C1A; }
.cookie-consent-btn.reject {
  background: var(--col-metal);
  color: var(--col-accent);
}
.cookie-consent-btn.reject:hover { background: #272B2A; color: var(--col-secondary); }
.cookie-consent-btn.settings {
  background: transparent;
  color: var(--col-secondary);
  border: 2px solid var(--col-secondary);
}
.cookie-consent-btn.settings:hover { background: var(--col-secondary); color: #152519; }

/* COOKIE SETTINGS MODAL */
#cookie-settings-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1300;
  background: rgba(24,24,28,0.89);
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
#cookie-settings-modal.open {
  display: flex;
  animation: cookie-modal-in 0.3s;
}
@keyframes cookie-modal-in { from { opacity:0; transform:scale(0.75);} to{opacity:1;transform:scale(1);} }
.cookie-settings-content {
  background: var(--col-bg);
  color: var(--col-accent);
  border-radius: 12px;
  padding: 36px 24px 32px 24px;
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 8px 30px 3px var(--col-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-settings-content h2 {
  font-size: 1.35rem;
  color: var(--col-secondary);
  margin-bottom: 10px;
}
.cookie-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-toggle-item {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  font-size: 1rem;
}
.cookie-category-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #2E2F30;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
}
.cookie-category-toggle:checked {
  background: var(--col-secondary);
}
.cookie-category-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #FFF;
  transition: transform 0.18s;
}
.cookie-category-toggle:checked:before {
  transform: translateX(15px);
  background: #FFF;
}
.cookie-toggle-item[aria-disabled="true"] .cookie-category-toggle {
  background: #2A2A2C;
  cursor: not-allowed;
}
.cookie-toggle-item[aria-disabled="true"] label,
.cookie-toggle-item[aria-disabled="true"] {
  color: #7B8186;
  cursor: not-allowed;
}
.cookie-settings-close {
  position: absolute;
  right: 22px; top: 13px;
  background: transparent;
  color: var(--col-accent);
  border: none;
  font-size: 2rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-settings-close:hover, .cookie-settings-close:focus {
  color: var(--col-secondary);
}
.cookie-settings-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-settings-actions .button {
  min-width: 120px;
}

@media (max-width: 500px) {
  .cookie-settings-content {
    padding: 14px 2vw 18px 2vw;
    min-width: 0;
    font-size: 0.97rem;
  }
  #cookie-consent-banner {
    font-size: 0.98rem;
    padding: 12px 1px 14px 1px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* ================================================================
   ANIMATIONS, TRANSITIONS, MICRO-INTERACTIONS
================================================================ */
.button, .newsletter-signup input[type="email"], select, input[type="search"] {
  transition: background 0.16s, color 0.16s, border 0.16s, box-shadow 0.2s, transform 0.15s;
}
a, button {
  transition: color 0.18s, background 0.18s, box-shadow 0.15s, transform 0.13s;
}
.card, .product-card, .blog-article, .guide-card, .category-card {
  transition: background 0.17s, box-shadow 0.17s, transform 0.16s;
}
.card:hover, .product-card:hover, .guide-card:hover, .blog-article:hover, .category-card:hover {
  box-shadow: 0 7px 26px var(--col-shadow);
  background: var(--col-primary);
  color: var(--col-secondary);
}

/* ==============
   MISC SPACING
================*/
main section:not(:first-child) {
  margin-top: 36px;
}

/* ==============
   ACCESSIBILITY
================*/
:focus-visible {
  outline: 2px dashed var(--col-secondary);
  outline-offset: 2px;
}

/* ==============
   DARK SCROLLBAR
================*/
body::-webkit-scrollbar {
  width: 12px;
  background: #252728;
}
body::-webkit-scrollbar-thumb {
  background: #43484B;
  border-radius: 7px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #63696C;
}

/* ===============
   CUSTOM FONTS
================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

/* ================================================================
   END OF FILE
================================================================ */
