/* RESET & BASE STYLES */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #13181B;
  color: #F1F8FB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.02em;
  font-size: 16px;
}
a {
  color: #23B47E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E0E0E0;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
}
input, textarea, select {
  font-family: inherit;
  background: #202327;
  color: #F1F8FB;
  border: 1px solid #39444F;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #23B47E;
  box-shadow: 0 0 0 2px rgba(35,180,126,0.15);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #F1F8FB;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.17;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.20;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 14px;
}
h4 {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 600;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #d1d9db;
}
strong, b {
  font-weight: 700;
}

/* FLEX CONTAINER CLASSES */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #181F23;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(26,38,41,0.10), 0 0.5px 1.5px 0 #1A2329;
  border: 1.5px solid #28303C;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.card { margin-bottom: 20px; position: relative; }
.card-content { display: flex; flex-direction: column; justify-content: center; }
.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: #F1F8FB; color: #23272C; border-radius: 12px; padding: 20px; box-shadow: 0 2px 12px rgba(12,20,24,0.08); margin-bottom: 20px; }
.testimonial-card p {
  color: #222831;
  font-weight: 500;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 1rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232C31;
  border-radius: 12px;
  border: 1px solid #273038;
  box-shadow: 0 2px 8px rgba(10,20,24,0.07);
  padding: 24px 20px;
  min-width: 260px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 18px rgba(35,180,126,0.08), 0 2px 12px rgba(18,30,34,0.18);
  border-color: #23B47E;
}

/* NAVIGATION STYLES */
header {
  background: #181F23;
  border-bottom: 2px solid #28303C;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  padding: 16px 0;
}
.main-nav .logo img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F1F8FB;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: #1B272C;
  color: #23B47E;
}
.btn-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #003654;
  color: #F1F8FB;
  border: none;
  border-radius: 8px;
  padding: 11px 32px;
  transition: background 0.19s, box-shadow 0.19s, color 0.19s;
  box-shadow: 0 1px 9px rgba(0,35,60,0.09);
  letter-spacing: 0.05em;
  margin-left: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #23B47E;
  color: #003654;
  box-shadow: 0 4px 18px rgba(35,180,126,0.18);
}
.btn-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: none;
  color: #23B47E;
  border: 2px solid #23B47E;
  padding: 10px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.19s, color 0.19s, border 0.19s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #23B47E;
  color: #003654;
  border-color: #003654;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #232C31;
  color: #23B47E;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #23B47E;
  margin-left: auto;
  transition: background 0.15s, color 0.18s;
  z-index: 50;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #23B47E;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #181F23;
  box-shadow: 0 8px 40px rgba(14,22,25,0.25);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.87,-0.17,.28,1.22);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #232C31;
  color: #F1F8FB;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin: 20px 20px 8px 0;
  border: 2px solid #23B47E;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #23B47E;
  color: #003654;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #F1F8FB;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 14px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:active {
  color: #23B47E;
  background: #1A2329;
}
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav ul { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* HERO SECTION */
.hero-section {
  margin-bottom: 60px;
  padding: 64px 20px;
  background: linear-gradient(100deg, #232C31 60%, #003654 100%);
  border-radius: 18px;
  box-shadow: 0 8px 24px 0 rgba(0,30,60,0.13), 0 1.5px 6px 0 #1A2329;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.hero-section h1 {
  color: #F1F8FB;
  font-size: 2.6rem;
  text-shadow: 0 4px 14px rgba(12,20,24,0.12);
}
.hero-section p {
  color: #DEEBF0;
  max-width: 640px;
}
.hero-section .btn-primary {
  margin-top: 22px;
  font-size: 1.15rem;
}

/* CARDS, PRODUCT GRIDS, AND CONTENT */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.product-card {
  background: #242A30;
  border: 1.5px solid #33414D;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(6,14,22,0.07);
  padding: 28px 22px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.product-card:hover, .product-card:focus-within {
  border-color: #23B47E;
  box-shadow: 0 2px 24px rgba(35,180,126,0.08), 0 2px 8px rgba(22,42,41,0.18);
  transform: translateY(-4px) scale(1.024);
}
.product-card h3 {
  color: #F1F8FB;
  font-size: 1.22rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.product-card ul {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #DBEFDC;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding-left: 14px;
  line-height: 1.4;
  opacity: .94;
}
.product-card .btn-primary {
  margin-top: 10px;
}

/* SEARCH AND FILTERS */
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.search-bar input[type="search"] {
  width: 220px;
  border-radius: 6px 0 0 6px;
}
.search-bar button {
  background: #23B47E;
  border-radius: 0 6px 6px 0;
  padding: 7.5px 18px;
  display: flex;
  align-items: center;
  border: none;
  transition: background 0.17s;
}
.search-bar button:hover,
.search-bar button:focus {
  background: #003654;
}
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.product-filters button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #232C31;
  color: #F1F8FB;
  border: 2px solid #39444F;
  border-radius: 6px;
  padding: 8px 22px;
  font-weight: 600;
  transition: background 0.19s, border 0.19s, color 0.2s;
}
.product-filters button:hover,
.product-filters button:focus {
  background: #23B47E;
  color: #003654;
  border-color: #23B47E;
}

/* BLOG OVERVIEW (inspiracje.html) */
.blog-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-overview ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 9px;
}
.blog-overview ul li a {
  color: #F1F8FB;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1.5px dashed #23B47E;
  transition: border-color 0.17s;
}
.blog-overview ul li a:hover {
  border-color: #F1F8FB;
  color: #23B47E;
}
.topics-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.topics-tags span {
  font-size: 0.97rem;
  background: #22484C;
  color: #23B47E;
  padding: 5px 13px;
  border-radius: 16px;
  font-weight: 500;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 30px;
}
.faq-item h3 {
  color: #23B47E;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.faq-item h3:hover, .faq-item h3:focus {
  color: #003654;
}
.faq-item p {
  color: #DEEBF0;
  padding-left: 7px;
  font-size: 1rem;
}

/* SUPPORT SECTION */
.support-info {
  background: #232E33;
  border-left: 4px solid #23B47E;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 1rem;
  color: #23B47E;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #1B2226;
  border-top: 2px solid #273038;
  padding: 0;
  margin-top: 80px;
  color: #D6DFE3;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 26px 0 12px 0;
}
.footer-nav a {
  color: #DBE8EE;
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-bottom 0.17s;
  font-family: 'Montserrat', 'Roboto', Arial,sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #23B47E;
  border-bottom: 1.5px solid #23B47E;
}
.footer-info {
  text-align: center;
  margin-bottom: 12px;
}
.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(.35) contrast(1.25);
  opacity: .85;
  transition: filter 0.18s, opacity 0.19s;
}
.footer-social a:hover img {
  filter: grayscale(0) contrast(1.45) brightness(1.1);
  opacity: 1;
}
.footer-bottom {
  color: #86919A;
  text-align: center;
  font-size: 0.94rem;
  padding: 22px 0 18px 0;
}

/* TEXT-IMAGE & CONTENT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #222A2B;
  border-radius: 10px;
  padding: 16px 16px;
  border: 1.5px solid #273038;
  margin-top: 10px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #A8B6BF;
  font-size: 1rem;
}
.contact-details li img {
  margin-right: 9px;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.map-location img {
  width: 32px;
  height: 32px;
  filter: grayscale(1) contrast(1.2);
}
.success-section {
  background: #232C31;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 3px 12px rgba(14,24,32,.13);
  color: #F1F8FB;
  font-size: 1.13rem;
  text-align: center;
}

/* SECURE PAYMENT ICONS (sklep.html) */
.secure-payment-icons {
  display: flex;
  gap: 16px;
  margin: 10px 0 14px 0;
}
.secure-payment-icons img {
  width: 38px;
  height: auto;
  filter: grayscale(0.7) contrast(1) brightness(1.04);
  transition: filter 0.17s;
}
.secure-payment-icons img:hover {
  filter: contrast(1.2) grayscale(0);
}

/* SECTION SPACING AND LAYOUT: CRITICAL MANDATORY CLASSES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* LISTS & TABLES */
ul, ol {
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 7px;
  line-height: 1.48;
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  color: #C9D7D7;
}
ul li:before {
  content: '';
  background: #23B47E;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 10px;
  display: inline-block;
}
ol li:before {
  content: none;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #21292F;
  color: #E5F2F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 3500;
  box-shadow: 0 -3px 20px rgba(15,45,50,0.17);
  padding: 18px 16px 14px 16px;
  border-top: 3px solid #23B47E;
  font-size: 1rem;
  transition: transform 0.37s;
  transform: translateY(0);
}
.cookie-banner.hidden {
  transform: translateY(100%);
}
.cookie-banner p {
  color: #E5F2F7;
  margin-bottom: 7px;
  text-align: center;
}
.cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btns .btn-cookie {
  background: #23B47E;
  color: #003654;
  font-weight: 700;
  padding: 9px 22px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(16,18,24,0.07);
  transition: background 0.19s, color 0.18s;
  margin-bottom: 4px;
}
.cookie-btns .btn-cookie.settings {
  background: #22484C;
  color: #F1F8FB;
  border: 2px solid #23B47E;
}
.cookie-btns .btn-cookie:hover,
.cookie-btns .btn-cookie:focus {
  background: #003654;
  color: #23B47E;
}
.cookie-btns .btn-cookie.settings:hover,
.cookie-btns .btn-cookie.settings:focus {
  background: #23B47E;
  color: #003654;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  width: 92vw;
  max-width: 400px;
  background: #232E33;
  color: #F1F8FB;
  border-radius: 16px 16px 5px 5px;
  box-shadow: 0 5px 24px rgba(21,38,38,0.23);
  z-index: 3600;
  padding: 32px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s, visibility 0.19s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.13rem;
  font-weight: 700;
  color: #23B47E;
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #F1F8FB;
  font-size: 1.38rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: background 0.19s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #23B47E;
  color: #003654;
}
.cookie-modal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #232C31;
  padding: 12px 12px 12px 16px;
  border-radius: 7px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category .toggle {
  display: flex;
  align-items: center;
}
.cookie-modal .toggle-switch {
  width: 42px;
  height: 24px;
  border-radius: 13px;
  background: #28303C;
  position: relative;
  transition: background 0.2s;
  margin-left: 8px;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-switch .switch {
  position: absolute;
  left: 3px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #F1F8FB;
  border-radius: 50%;
  transition: left 0.22s, background 0.19s;
}
.cookie-modal .toggle-switch input:checked + .switch {
  left: 19px;
  background: #23B47E;
}
.cookie-modal .cookie-category.disabled {
  opacity: 0.57;
}
.cookie-modal .modal-footer {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal .btn-cookie {
  padding: 8px 21px;
}

/* ANIMATIONS & INTERACTIONS */
.btn-primary, .btn-secondary, .btn-cookie, .main-nav ul li a, .feature-item, .product-card, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.2s, color 0.18s, border-color 0.17s, box-shadow 0.17s, transform 0.17s;
}
.feature-item:hover, .product-card:hover {
  transform: translateY(-4px) scale(1.018);
}

/* RESPONSIVE DESIGN (MOBILE-FIRST APPROACH) */
@media (max-width: 1260px) {
  .container { max-width: 98vw; padding: 0 12px; }
}
@media (max-width: 900px) {
  .container { max-width: 100vw; padding: 0 8px; }
  .content-grid, .feature-grid, .card-container, .product-cards {
    gap: 18px;
  }
  .section {
    padding: 28px 9px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
  .hero-section {
    padding: 42px 9px;
    min-height: 180px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .text-section, .blog-overview {
    gap: 14px;
  }
  .content-grid, .feature-grid, .card-container, .product-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .hero-section {
    font-size: 0.96rem;
    border-radius: 9px;
  }
  .product-card, .feature-item {
    min-width: unset;
    max-width: 99vw;
  }
  .footer-nav {
    gap: 10px;
    flex-direction: column;
    padding: 12px 0 2px 0;
  }
  .footer-info, .footer-bottom { font-size: 0.89rem; }
}
@media (max-width: 520px) {
  .container {
    padding: 0 2px;
  }
  .section {
    padding: 15px 2px;
  }
  .cookie-banner {
    font-size: 0.93rem;
    padding: 9px 3px 6px 3px;
  }
  .cookie-modal {
    padding: 14px 2px 12px 2px;
    max-width: 99vw;
    border-radius: 10px;
    font-size: 0.98rem;
  }
}

/* INDUSTRIAL MODERN ACCENTS */
body, .section, .feature-item, .product-card, .hero-section, .main-nav, .footer-info, .cookie-modal, .cookie-banner {
  font-variation-settings: 'wght' 420;
  font-family: 'Roboto', 'Montserrat', monospace, Arial, sans-serif;
}
.logo img {
  filter: grayscale(0.15) contrast(1.25) drop-shadow(0 2px 6px #13181B88);
}

/* metallic accent lines for industrial feel */
.section {
  border-top: 2.8px solid #23B47E;
  box-shadow: 0 2.5px 18px 0 rgba(55,80,90,0.09), 0 0.7px 2.4px 0 #1A2329;
}
.feature-item, .product-card {
  border-left: 3.5px solid #003654;
}
.feature-item:hover, .product-card:hover {
  border-left: 3.5px solid #23B47E;
}

/* industrial modern focus for ACCENT TEXT */
h1, h2, h3, h4 {
  letter-spacing: 0.045em;
  text-transform: none;
}
h1, h2 {
  color: #F1F8FB;
  text-shadow: 0 3px 10px rgba(35,180,126,.08),0 .5px 0 #00365433;
}

/* Standard label font size on buttons/labels */
.btn-primary, .btn-secondary, .btn-cookie, .product-filters button {
  font-feature-settings: "ss01" on, "calt" on;
  letter-spacing: 0.09em;
}

/* END OF CSS */
