/*========================
  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, 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: inherit; vertical-align: baseline;
  box-sizing: border-box; }
html { line-height: 1; }
body { background: #F3F7F0; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; border: 0; }
button, input, select, textarea { font: inherit; }
*:focus { outline-color: #7FB800; outline-width: 2px; outline-style: solid; }

/*========================
  ROOT VARIABLES
=========================*/
:root {
  --brand-primary: #2C3E50;
  --brand-secondary: #7FB800;
  --brand-accent: #F3F7F0;
  --brand-warm1: #FFD7A0;
  --brand-warm2: #FFF2DC;
  --brand-warm3: #FFE9C3;
  --brand-warm4: #F7D1C7;
  --text-dark: #2C3E50;
  --text-medium: #6B7077;
  --text-on-primary: #fff;
  --btn-shadow: 0 3px 12px rgba(47, 62, 80, 0.11);
  --card-shadow: 0 2px 8px rgba(47, 62, 80, 0.12);
  --header-bg: #fff;
  --footer-bg: #fff;
  --focus-outline: #7FB800;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition-std: 0.22s cubic-bezier(.4,0,.2,1);
}

/*========================
  BASE TYPOGRAPHY
=========================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
html { font-size: 16px; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--brand-accent);
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  margin-bottom: 20px;
}
h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -1px; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4, h5 { font-size: 1.1rem; font-weight: 600; }
p, li {
  color: var(--text-medium); font-size: 1.06rem; line-height: 1.68;
}
small { font-size: 0.95rem; color: #8B8D92; }
.strong, strong { color: var(--brand-primary); font-weight: 600; }
a { color: var(--brand-secondary); transition: color var(--transition-std); }
a:hover, a:focus { color: var(--brand-primary); }
.subheadline { color: var(--brand-primary); font-size: 1.25rem; margin-bottom: 22px; }

/*========================
  LAYOUT CONTAINERS
=========================*/
.container {
  width: 100%; max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--brand-warm3);
  padding: 32px 20px;
  box-shadow: var(--card-shadow);
  margin-bottom: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-warm2);
  border-radius: var(--radius-lg);
}
@media (min-width: 768px) {
  .section { padding: 64px 32px; }
}

/*========================
  FLEXBOX PATTERNS
=========================*/
.card-container {
  display: flex; flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 260px;
}
.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: 20px; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*========================
  HEADER / NAVIGATION
=========================*/
header {
  width: 100%;
  background: var(--header-bg);
  box-shadow: 0 2px 12px rgba(47,62,80,0.07);
  position: sticky; top: 0; z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
header img[alt="Glimmer Void"] {
  height: 44px;
  margin-right: 24px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem; font-weight: 600;
  color: var(--brand-primary);
  padding: 9px 14px;
  border-radius: var(--radius-md);
  transition: background var(--transition-std);
}
nav a:hover, nav a:focus {
  background: var(--brand-warm1);
  color: var(--brand-secondary);
}
.cta-primary {
  background: var(--brand-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700; font-size: 1.08rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-lg);
  padding: 12px 32px;
  box-shadow: var(--btn-shadow);
  margin-left: 16px;
  cursor: pointer;
  transition: background var(--transition-std), box-shadow var(--transition-std), transform var(--transition-std);
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-primary);
  box-shadow: 0 7px 22px rgba(47,62,80,0.13);
  transform: translateY(-1px) scale(1.03);
  color: #fff;
}
.cta-secondary {
  background: var(--brand-warm1);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  padding: 11px 26px;
  box-shadow: var(--btn-shadow);
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
  transition: background var(--transition-std), transform var(--transition-std);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cta-buy {
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  box-shadow: var(--btn-shadow);
  margin-top: 10px;
  transition: background var(--transition-std), transform var(--transition-std);
  cursor: pointer;
  display: inline-block;
}
.cta-buy:hover, .cta-buy:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: scale(1.05) translateY(-1.5px);
}

header .mobile-menu-toggle {
  display: none;
}
@media (max-width: 991px) {
  header nav, .cta-primary { display: none; }
  header .mobile-menu-toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    background: var(--brand-warm1);
    color: var(--brand-primary);
    width: 44px; height: 44px;
    border: none; border-radius: 50%;
    font-size: 2rem;
    cursor: pointer; margin-left: 8px;
    box-shadow: 0 1px 8px rgba(47,62,80,0.09);
    transition: background var(--transition-std), box-shadow var(--transition-std), color var(--transition-std);
    z-index: 51;
  }
  header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
    background: var(--brand-secondary); color: #fff;
  }
}

/*========================
  MOBILE MENU OVERLAY
=========================*/
.mobile-menu {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,62,80,0.07);
  backdrop-filter: blur(2.5px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transforming: scale(1);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-std);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav.mobile-nav {
  background: #fff;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: -2px 0 16px rgba(44,62,80,0.15);
  min-width: 65vw;
  max-width: 350px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(.5,.04,.2,1);
}
.mobile-menu.open nav.mobile-nav {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-warm1);
  border: none;
  color: var(--brand-primary);
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 1.65rem;
  margin: 18px 16px 10px 0;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(44,62,80,0.11);
  transition: background var(--transition-std), color var(--transition-std);
  z-index: 101;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--brand-secondary); color: #fff; }
.mobile-nav {
  width: 100%; padding: 26px 0 0 0;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--brand-primary);
  font-size: 1.22rem;
  padding: 19px 32px 16px 32px;
  border: none; border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: background var(--transition-std), color var(--transition-std);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-warm1);
  color: var(--brand-secondary);
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/*========================
  FOOTER
=========================*/
footer {
  width: 100%;
  background: var(--footer-bg);
  border-top: 2px solid #ECECEC;
  padding: 42px 0 24px 0;
  box-sizing: border-box;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.02rem;
  transition: background var(--transition-std), color var(--transition-std);
}
footer nav a:hover, footer nav a:focus {
  background: var(--brand-warm1);
  color: var(--brand-primary);
}
footer .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: var(--text-medium);
  font-size: 1rem;
}
footer .contact-info img {
  width: 21px; margin-right: 8px;
}
footer small { color: #9FA2A7; margin-top: 12px; }
footer a img { height: 32px; }
@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  footer nav {
    margin: 0 22px;
  }
}

/*========================
  BADGE, LISTS, GRIDS
=========================*/
.badge {
  display: inline-block;
  background: var(--brand-secondary);
  color: #fff;
  padding: 5px 17px;
  border-radius: var(--radius-sm) 16px 16px var(--radius-md);
  font-size: 0.92rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.values-list, .newsletter-benefits {
  margin: 20px 0 18px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.values-list li, .newsletter-benefits li {
  background: var(--brand-warm3);
  border-radius: var(--radius-md);
  padding: 13px 23px;
  font-size: 1.04rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.values-list img { width: 25px; height: 25px; }
@media (min-width: 640px) {
  .values-list, .newsletter-benefits { flex-direction: row; gap: 22px; }
}

.products-highlight,
.products-list,
.product-list,
.features-grid,
.team-list,
.categories-filter,
.category-list,
.tip-list,
.blog-list,
.usp-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.products-highlight > div,
.product-list > div,
.features-grid > div,
.team-list > div,
.tip-list > div,
.blog-list > div,
.usp-section > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 24px 22px;
  min-width: 235px;
  flex: 1 1 245px;
}
.products-highlight > div {
  position: relative;
  min-width: 246px;
}
.product-list > div h3, .products-highlight > div h3 {
  color: var(--brand-primary);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.guarantee-badge {
  background: var(--brand-warm1);
  color: var(--brand-primary);
  font-weight: 600;
  border-radius: var(--radius-md);
  margin: 22px 0 0 0;
  padding: 13px 22px;
  display: inline-flex; align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.categories-filter, .filter-tags {
  gap: 11px;
  margin: 17px 0 11px 0;
}
.categories-filter span, .filter-tags span, .category-list span {
  display: inline-block;
  background: var(--brand-warm3);
  color: var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  font-size: 0.94rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
@media (max-width: 540px) {
  .features-grid, .products-highlight, .product-list, .tip-list, .team-list,
  .usp-section, .blog-list {
    gap: 12px;
  }
  .features-grid > div, .products-highlight > div, .product-list > div,
  .tip-list > div, .team-list > div, .usp-section > div, .blog-list > div {
    min-width: unset;
    padding: 16px 10px;
  }
}

/*========================
  TESTIMONIALS / BLOCKQUOTE
=========================*/
.testimonial-card {
  color: var(--brand-primary);
  font-size: 1.18rem;
  font-style: italic;
  border-left: 7px solid var(--brand-secondary);
  background: #fff;
  box-shadow: var(--card-shadow);
}
.testimonial-card blockquote {
  color: var(--text-dark);
  font-size: 1.16rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.testimonial-card p {
  color: var(--brand-secondary);
  font-size: 1.04rem;
  margin-left: 6px;
}

.inspiration-slider blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  color: var(--brand-primary);
  padding-left: 18px;
  border-left: 4px solid var(--brand-secondary);
  margin-bottom: 14px;
  font-style: italic;
}

/*========================
  FORMS, SEARCH BAR
=========================*/
.search-bar {
  width: 100%;
  margin: 15px 0 10px 0;
  display: flex;
}
.search-bar input[type="text"] {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid #D7D8DD;
  font-size: 1.04rem;
  color: var(--brand-primary);
  background: #fff;
  transition: border-color var(--transition-std);
  box-shadow: var(--btn-shadow);
}
.search-bar input[type="text"]:focus {
  border-color: var(--brand-secondary);
}
.search-bar input[disabled] {
  background: #F9F9F9;
  color: #bbb;
  opacity: 0.65;
  cursor: not-allowed;
}
.newsletter-signup {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.newsletter-signup input[type="email"] {
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid #d7d9dd;
  font-size: 1.1rem;
  color: var(--brand-primary);
  outline: none;
}
.newsletter-signup button {
  padding: 11px 23px;
  border-radius: var(--radius-md);
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: var(--btn-shadow);
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background var(--transition-std), transform var(--transition-std);
  cursor: pointer;
}
.newsletter-signup button:disabled {
  background: #cfe7b7; color: #fff; opacity:0.62; cursor: not-allowed;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
  background: var(--brand-primary);
  transform: translateY(-1.5px) scale(1.03);
}

/*========================
  MISC VISUAL ELEMENTS
=========================*/
.map-embed {
  margin-top: 22px;
  padding: 20px 0;
  background: var(--brand-warm4);
  border-radius: var(--radius-lg);
  color: var(--brand-primary);
  text-align: center;
  font-size: 1rem;
}
.confirmation-message {
  margin: 24px 0 22px 0;
  background: var(--brand-warm2);
  border-radius: var(--radius-md);
  padding: 19px 26px;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/*========================
  BLOG STYLES
=========================*/
.blog-list {
  margin-bottom: 16px;
}
.blog-list > div {
  border-left: 4px solid var(--brand-secondary);
  padding-left: 18px !important;
  min-width: 205px;
}
.blog-date {
  color: #B6B8BD;
  font-size: .99rem;
  margin-top: 4px;
}
.categories-filter {
  margin: 14px 0 16px 0;
}
.categories-filter span {
  background: var(--brand-warm1);
  color: var(--brand-primary);
  font-weight: 600;
}

/*========================
  RESPONSIVE DESIGN
=========================*/
@media (max-width: 991px) {
  .container { padding: 0 8px; }
  .content-wrapper, .section {
    padding: 22px 6px;
    margin-bottom: 30px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .values-list, .newsletter-benefits { flex-direction: column; gap: 10px; }
}
@media (max-width: 540px) {
  .container { padding: 0 2vw; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.07rem; }
  .section, .content-wrapper { padding: 9vw 2vw; }
  .card, .products-highlight > div, .product-list > div, .features-grid > div, .team-list > div, .tip-list > div, .usp-section > div, .blog-list > div {
    min-width: unset;
    padding: 14px 7px;
  }
}

/*========================
  HOVER/FOCUS
=========================*/
.card, .products-highlight > div, .product-list > div,
.features-grid > div, .tip-list > div, .usp-section > div,
.team-list > div, .blog-list > div {
  transition: box-shadow var(--transition-std), transform var(--transition-std), background var(--transition-std);
}
.card:hover, .card:focus, .products-highlight > div:hover, .products-highlight > div:focus,
.product-list > div:hover, .product-list > div:focus,
.features-grid > div:hover, .features-grid > div:focus,
.tip-list > div:hover, .tip-list > div:focus,
.usp-section > div:hover, .usp-section > div:focus,
.team-list > div:hover, .team-list > div:focus,
.blog-list > div:hover, .blog-list > div:focus {
  box-shadow: 0 4px 24px rgba(44,62,80,0.11);
  transform: scale(1.025);
  background: var(--brand-warm2);
}

/*========================
  COOKIE CONSENT BANNER
=========================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbee;
  color: var(--brand-primary);
  z-index: 2000;
  box-shadow: 0 -2px 16px rgba(47,62,80,0.09);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 5vw 19px 5vw;
  gap: 19px;
  transition: transform 0.27s var(--transition-std), opacity 0.22s var(--transition-std);
  opacity: 0; transform: translateY(70px);
  pointer-events: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
}
.cookie-banner.visible {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.cookie-banner button {
  padding: 12px 23px;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  transition: background var(--transition-std), color var(--transition-std), transform var(--transition-std);
}
.cookie-banner .accept {
  background: var(--brand-secondary); color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--brand-primary); color: #fff;
}
.cookie-banner .reject {
  background: #FFE9C3; color: var(--brand-primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFCF8B; color: var(--brand-primary);
}
.cookie-banner .settings {
  background: transparent; color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--brand-warm1); color: var(--brand-primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(47,62,80,0.19);
  backdrop-filter: blur(3px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .22s var(--transition-std);
}
.cookie-modal.visible {
  opacity: 1; pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: var(--brand-primary);
  width: 97vw; max-width: 430px;
  border-radius: var(--radius-lg);
  padding: 34px 32px 28px 32px;
  box-shadow: 0 4px 32px rgba(44,62,80,0.15);
  display: flex; flex-direction: column; gap: 17px;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 15px; right: 18px;
  background: var(--brand-warm4);
  color: var(--brand-primary);
  width: 34px; height: 34px;
  border: none; border-radius: 50%;
  font-size: 1.22rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-std), color var(--transition-std);
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--brand-secondary); color: #fff;
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--brand-warm2);
  padding: 13px 18px;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--brand-primary);
}
.cookie-category input[type=checkbox] {
  accent-color: var(--brand-secondary);
  width: 20px; height: 20px;
  margin-right: 7px;
}
.cookie-category.essential {
  opacity: 0.72;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal button {
  padding: 11px 21px;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.04rem;
  transition: background var(--transition-std), color var(--transition-std);
  cursor: pointer;
}
.cookie-modal .modal-accept {
  background: var(--brand-secondary); color: #fff;
}
.cookie-modal .modal-accept:hover, .cookie-modal .modal-accept:focus {
  background: var(--brand-primary); color: #fff;
}
.cookie-modal .modal-cancel {
  background: #F6F6F6; color: var(--brand-primary);
}
.cookie-modal .modal-cancel:hover, .cookie-modal .modal-cancel:focus {
  background: var(--brand-warm1); color: var(--brand-primary);
}

/*========================
  MICRO-ANIMATIONS
=========================*/
.cta-primary, .cta-secondary, .cta-buy, .card, .products-highlight > div,
.product-list > div, .features-grid > div, .tip-list > div, .usp-section > div, .team-list > div, .blog-list > div, .badge {
  will-change: transform, box-shadow, background;
}
.cta-primary:active, .cta-secondary:active, .cta-buy:active {
  transform: scale(0.96);
}

/*========================
  ACCESSIBILITY
=========================*/
[tabindex='0']:focus, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--focus-outline);
  outline-offset: 2px;
}

/*========================
  PRINT STYLES
=========================*/
@media print { * { background: #fff !important; color: #000 !important; box-shadow: none !important; } }
