/* ===================================================== */
/*                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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #f6ecdf;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #453821;
  min-height: 100vh;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* ===================================================== */
/*               GOOGLE FONTS—Retro/Vintage              */
/* ===================================================== */
@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');
@import url('https://fonts.googleapis.com/css?family=Josefin+Slab:700&display=swap');

/* ===================================================== */
/*               COLOR & FONT VARIABLES                  */
/* ===================================================== */
:root {
  /* Vintage Retro Palette */
  --primary: #3546A9;      /* Brand primary (deep indigo) */
  --secondary: #26AFAD;    /* Brand secondary (teal) */
  --accent: #F6F7FB;       /* Brand accent (very light) */

  --bg-light: #f6ecdf;     /* Warm, vintage background */
  --bg-hero: #f5d9b3;      /* Subtle sand vintage hero BG */
  --cream: #f8e8c7;        /* Soft cream card BG */
  --mustard: #FFD275;      /* Nostalgic highlight */
  --bronze: #926F34;       /* Vintage brown */
  --ruby: #bb4351;         /* Retro accent red */
  --seafoam: #8ece9e;      /* Vintage green accent */
  --shadow: rgba(70,50,30,0.14);

  --text-main: #453821;    /* Main dark (for body text) */
  --text-heading: #272619; /* Headings */
  --white: #fff;           /* White bg */

  --font-display: 'Montserrat', 'Josefin Slab', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --font-decor: 'Josefin Slab', Georgia, serif;

  --radius-card: 18px;
  --radius-btn: 8px;
  --shadow-card: 0 4px 20px var(--shadow);
  --transition-std: 0.22s cubic-bezier(.4,0,.2,1);
}


/* ===================================================== */
/*               LAYOUT STRUCTURE                        */
/* ===================================================== */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.cta-box, .newsletter-box {
  background: var(--mustard);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 18px;
}

/* ===================================================== */
/*               TYPOGRAPHY                              */
/* ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--text-heading);
  text-shadow: 1px 3px 0 #ffe7ab0d;
}
h1 {
  font-family: var(--font-decor);
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--primary);
  letter-spacing: 0.04em;
  line-height: 1.08;
}
h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--bronze);
  font-family: var(--font-decor);
}
h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 2px;
}
h4, h5, h6 {
  font-size: 18px;
}
p, li {
  font-family: var(--font-body);
  color: var(--text-main);
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}
small, .footer-legal small {
  font-size: 13px;
  color: var(--bronze);
}

/* Retro badge for price plans */
.badge {
  display: inline-block;
  background: var(--ruby);
  color: var(--white);
  font-family: var(--font-decor);
  font-size: 14px;
  letter-spacing: 0.09em;
  border-radius: 8px;
  padding: 2px 10px;
  margin-left: 10px;
  box-shadow: 0 2px 6px #b621390c;
}

/* ===================================================== */
/*                   NAVIGATION & HEADER                 */
/* ===================================================== */
header {
  background: var(--bg-hero);
  width: 100%;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 8px #926F3430;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header img {
  width: 156px;
  height: auto;
  margin-right: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  padding: 7px 14px;
  border-radius: var(--radius-btn);
  transition: background .15s, color .17s;
}
header nav a:hover, header nav a:focus {
  background: var(--mustard);
  color: var(--bronze);
}
.btn.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-btn);
  padding: 13px 26px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px #25318c15;
  margin-left: 14px;
  outline: 0;
  border: 0;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-std), transform .14s;
}
.btn.btn-primary::before {
  content: '';
  position: absolute;
  left: 0;top:0;right:0;bottom:0;
  background: #384ba353;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.btn.btn-primary:active::before {
  opacity: .12;
}

/* Main buttons - variant for accent */
.btn {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-btn);
  padding: 12px 21px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 16px;
  margin-top: 7px;
  margin-bottom: 0;
  transition: background .17s, color .13s, transform .10s;
  border: none;
}
.btn:hover, .btn:focus {
  background: var(--bronze);
  color: var(--white);
}

/* ===================================================== */
/*                MOBILE MENU / HAMBURGER                */
/* ===================================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 50;
  background: var(--primary);
  color: var(--mustard);
  font-size: 36px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px #25318c20;
  transition: background .16s, color .16s;
}
.mobile-menu-toggle:focus {
  outline:2px dashed var(--mustard);
}
@media (max-width: 1000px) {
  header nav, header .btn.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  z-index: 120;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff7ea;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.82,.04,.26,1);
  box-shadow: 8px 0 80px #a37d4e18;
  padding: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0); 
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--ruby);
  color: #fff;
  font-size: 35px;
  margin: 24px 24px 9px 0;
  align-self: flex-end;
  border-radius: 14px;
  padding: 7px 13px 4px;
  cursor: pointer;
  transition: background .17s;
  border: none;
  z-index: 2;
}
.mobile-menu-close:focus {
  outline:2px dashed var(--mustard);
  background: #d95b6a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 30px 28px 10px 32px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 22px;
  color: var(--bronze);
  font-family: var(--font-decor);
  font-weight: 700;
  padding: 13px 0 13px 0;
  border-bottom: 1.5px dashed #e7b97178;
  width: 100%;
  transition: background .13s, color .16s, padding .09s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--mustard);
  color: var(--primary);
  padding-left: 18px;
}

@media (max-width: 480px) {
  .mobile-nav {
    margin:30px 10px 8px 12px;
    gap: 10px;
  }
  .mobile-menu-close {margin-right: 12px;}
}


/* ===================================================== */
/*                       MAIN                            */
/* ===================================================== */
main {
  background: none;
  flex: 1;
}

/* ===================================================== */
/*                FLEXBOX CONTENT STRUCTURES             */
/* ===================================================== */
.features-grid, .article-grid, .card-container, .content-grid, .footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 0;
}
.features-grid div, .feature-item, .card, .testimonial-card, .newsletter-box, .contact-box {
  flex: 1 1 280px;
  min-width: 220px;
  background: var(--cream);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 18px 19px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-grid {
  gap: 20px;
  flex-direction: row;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fffaf3;
  border-radius: 19px;
  box-shadow: 0 5px 18px #a5916a16;
  padding: 20px 32px;
  gap: 20px;
  margin-bottom: 19px;
  color: #322507;
  font-size: 17px;
  border: 2px solid #ffd28a30;
  min-width: 0;
  position: relative;
}
.testimonial-card p {
  color: #322507;
  font-size: 16px;
  line-height: 1.47;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 16px;
}
.testimonial-card span {
  color: var(--mustard);
  letter-spacing: 0.16em;
  font-size: 18px;
  margin-top: 1px;
  display: inline-block;
}

@media (max-width: 768px) {
  .section { margin-bottom: 38px; padding: 24px 6px; }
  .content-wrapper, .cta-box, .newsletter-box { padding: 12px 8px!important; }
  .features-grid, .article-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .features-grid div, .feature-item, .card, .testimonial-card, .newsletter-box {
    min-width: unset;
    flex: 1 1 100%;
    padding: 19px 11px 15px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
}
@media (max-width:480px) {
  h1 { font-size: 30px; }
  h2 { font-size: 21px; }
  .btn.btn-primary, .btn { font-size: 15px; padding: 10px 16px; }
  .testimonial-card { flex-direction: column; gap: 12px; padding: 12px 7px; }
}

.section .btn, .section .btn-primary {
  margin-top: 13px;
}


/* List styles for features/values */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  font-size: 16px;
  color: var(--text-main);
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  margin-right: 5px;
}


/* Table Styles */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  margin-bottom: 15px;
  background: #fffbe9;
  border-radius: 15px;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 16px;
  box-shadow: 0 4px 20px #cfad7e1c;
}
thead tr {
  background: var(--mustard);
  color: var(--bronze);
}
thead th {
  font-size: 16px;
  font-family: var(--font-display);
  padding: 15px 8px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1.5px solid #ffe7ab45;
}
tbody tr {
  border-bottom: 1px dashed #ffe7ab78;
}
tbody td {
  padding: 13px 8px;
  color: var(--bronze);
  border-bottom: 1px solid #fff0d7;
}
tbody tr:last-child td {
  border-bottom: none;
}
tr[style*="font-weight:bold"] {
  background: #fdecdd;
  border-left: 5px solid var(--ruby);
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 22px 0 19px 0;
}
.faq-list li {
  background: var(--cream);
  border-radius: 13px;
  padding: 13px 15px 13px 15px;
  box-shadow: 0 1.5px 8px #9e94761a;
  font-size: 16px;
  font-family: var(--font-body);
}
.faq-search {
  display: flex;
  flex-direction: row;
  margin-top: 5px;
}
.faq-search input {
  flex: 1 1 160px;
  padding: 13px 14px;
  background: #fff8e6;
  border-radius: 8px;
  border: 1px solid #ffe7ab;
  font-size: 17px;
  margin-right: 0;
  transition: border .13s;
}
.faq-search input:focus {
  border-color: var(--mustard);
}

/* ===================== Article grid (porady) ====================== */
.article-categories {
  font-family: var(--font-decor);
  font-size: 15px;
  color: var(--bronze);
  margin-bottom: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
}
.article-categories a {
  color: var(--secondary);
  text-decoration: underline dotted var(--secondary);
  transition: color .15s;
  font-weight: bold;
}
.article-categories a:hover {
  color: var(--bronze);
}
.search-bar {
  display: flex;
  margin-bottom: 15px;
}
.search-bar input[type="text"] {
  flex: 1 1 220px;
  font-size: 16px;
  padding: 11px 14px;
  border-radius: 9px;
  border: 1.3px solid #eed3a4;
  background: #fcf5e8;
  margin-right: 0;
}
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.article-grid article {
  flex: 1 1 280px;
  min-width: 220px;
  background: #f9f4ea;
  border-radius: 17px;
  box-shadow: 0 4px 16px #a08a6220;
  padding: 23px 19px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-grid article h2 {
  font-size: 20px;
  color: var(--primary);
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.article-grid article p {
  font-size: 16px;
  color: #63593e;
}
.article-grid article a {
  align-self: flex-end;
  margin-top: 3px;
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 15px;
  text-decoration: underline;
  transition: color .17s, text-shadow .13s;
}
.article-grid article a:hover {
  color: var(--primary);
  text-shadow: 1px 1px #ffd27544;
}


/* Newsletter box in porady page */
.newsletter-box input[type="email"] {
  width: 270px;
  padding: 11px 15px;
  border-radius: 9px;
  border: 1.5px solid #ffd27565;
  background: #fff8e0;
  font-size: 16px;
  margin-bottom: 13px;
  margin-right: 9px;
}
.newsletter-box input[type="email"]:focus {
  border: 1.7px solid var(--bronze);
}
.newsletter-box button.btn {
  background: var(--ruby);
  color: #fff;
  font-size: 16px;
  margin-left: 0;
}
.newsletter-box button.btn:hover {
  background: var(--primary);
}

/* Contact box (kontakt) */
.contact-box {
  background: var(--cream);
  border: 1.7px solid #fff4d2;
  border-radius: 15px;
  box-shadow: 0 3px 14px #a08a6220;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 16px;
  margin-bottom: 16px;
  padding: 21px 15px 18px;
}
.contact-box p {
  color: var(--text-main);
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-box a {
  color: var(--primary);
  font-weight: bold;
  text-decoration: underline dotted var(--primary);
}

/* ===================================================== */
/*                      FOOTER                           */
/* ===================================================== */
footer {
  background: #fffbe5;
  box-shadow: 0 -3px 17px #d2bb9612;
  padding: 28px 0 8px 0;
  margin-top: 59px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 35px;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
footer img {
  width: 60px;
  height: auto;
  margin-right: 15px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-wrap: wrap;
  min-width: 200px;
  margin-right: 25px;
}
footer nav a {
  color: var(--bronze);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 2px 1px;
  transition: color .13s;
}
footer nav a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 12px;
  font-size: 15px;
  color: #453821;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 5px;
}
.footer-legal {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}
@media (max-width:900px) {
  .footer .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer nav { min-width: 0; margin-right: 0; }
}

/* ===================================================== */
/*                  COOKIE BANNER                        */
/* ===================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff1d6;
  border-top: 3px solid var(--mustard);
  box-shadow: 0 -2px 20px #92712e23;
  z-index: 260;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #6d5630;
  animation: cookie-show .38s cubic-bezier(.68, -0.6, .32, 1.6);
  box-sizing: border-box;
}
.cookie-banner .cookie-message {
  max-width: 400px;
  line-height: 1.6;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  border-radius: var(--radius-btn);
  padding: 9px 17px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, transform .10s;
}
.cookie-banner .accept {
  background: var(--mustard);
  color: #423515;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--bronze);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--ruby);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--bronze);
  border: 1.7px solid var(--bronze);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--cream);
  color: var(--primary);
  border-color: var(--primary);
}
@keyframes cookie-show {
  0% { transform: translateY(120%); opacity:0; }
  98% { transform: translateY(-6px); }
  100% { transform: translateY(0); opacity:1; }
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 17px 9px;
  }
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(74,54,22,0.46);
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s, visibility .22s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fffbe0;
  border-radius: 18px;
  box-shadow: 0 16px 70px #a08a6238;
  min-width: 320px;
  max-width: 97vw;
  max-height: 96vh;
  padding: 36px 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-family: var(--font-body);
}
.cookie-modal .close {
  position: absolute;
  top: 18px; right: 21px;
  background: var(--bronze);
  color: #fff;
  border-radius: 12px;
  font-size: 25px;
  padding: 5px 11px 3px;
  border: none;
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 22px;
  color: var(--bronze);
  margin-bottom: 2px;
  font-family: var(--font-display);
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 9px;
}
.cookie-modal .category label {
  font-size: 16px;
  color: var(--bronze);
  font-family: var(--font-body);
  font-weight: bold;
}
.cookie-modal .toggle {
  width: 40px;
  height: 19px;
  border-radius: 12px;
  background: #d1b99d;
  display: inline-block;
  position: relative;
  margin-right: 7px;
  transition: background .16s;
}
.cookie-modal .toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform .20s;
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider {
  background: var(--mustard);
  transform: translateX(20px);
}
.cookie-modal .category[data-essential] .toggle {
  background: var(--mustard)!important;
  opacity: .88;
}
.cookie-modal .category[data-essential] label::after {
  content: ' (zawsze aktywne)';
  color: #ac985c;
  font-size: 13px;
  font-weight: 400;
  margin-left: 7px;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 7px;
}
.cookie-modal .modal-actions button {
  border-radius: var(--radius-btn);
  padding: 8px 17px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-actions .accept {
  background: var(--mustard);
  color: #3c3113;
}
.cookie-modal .modal-actions .accept:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .modal-actions .save {
  background: var(--bronze);
  color: #fff;
}
.cookie-modal .modal-actions .save:hover {
  background: var(--ruby);
}
.cookie-modal .modal-actions .reject {
  background: #fff;
  color: var(--ruby);
  border: 1.2px solid var(--ruby);
}
.cookie-modal .modal-actions .reject:hover {
  background: var(--ruby);
  color: #fff;
}

@media (max-width: 550px) {
  .cookie-modal .modal-content { padding: 22px 7px 18px; min-width: unset; }
}

/* ================================================== */
/*                  TRANSITIONS, SHADOWS              */
/* ================================================== */
.card, .feature-item, .testimonial-card, .faq-list li, .article-grid article, .newsletter-box, .cta-box {
  transition: box-shadow .22s, background .18s, transform .14s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .faq-list li:hover, .article-grid article:hover, .newsletter-box:hover, .cta-box:hover {
  box-shadow: 0 10px 26px #8f80501f;
  transform: translateY(-2px) scale(1.01);
}

/* ===================================================== */
/*                  RETRO/DECORATIVE                     */
/* ===================================================== */
body {
  background: repeating-linear-gradient(135deg, #f9e6c9 0px, #f6ecdf 48px, #f6f7fb 53px, #f9e6c9 100px);
}
.section:not(.cta-box):not(.newsletter-box) {
  background: rgba(255, 247, 234, 0.8);
  border-radius: 22px;
  border: 2.5px dashed #e1be88;
}
.features-grid div, .feature-item {
  border: 1.9px solid #efc57147;
  background: repeating-linear-gradient(120deg, #fffbe7 0 42px, #f7ebcc 42px 84px);
}
.cta-box, .newsletter-box {
  background: repeating-linear-gradient(-35deg, #ffd275 0 13px, #fff6d5 13px 26px);
}
footer {
  border-top: 2.5px double #e1be88;
}

/* Retro corners and geometric accents (as pseudo-elements) */
.features-grid div::before, .testimonial-card::before, .cta-box::before {
  content: '';
  position: absolute;
  left: -13px; top: -13px;
  width: 26px; height: 26px;
  border: 3.5px solid #FFD275;
  border-radius: 60% 50% 47% 53%;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.features-grid div::after, .testimonial-card::after, .cta-box::after {
  content: '';
  position: absolute;
  right: -12px; bottom: -10px;
  width: 22px; height: 22px;
  border: 2.5px solid #26AFAD;
  border-radius: 50% 60% 50% 60%;
  opacity: 0.19;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 480px) {
  .features-grid div::before,.features-grid div::after, .testimonial-card::before, .testimonial-card::after, .cta-box::before, .cta-box::after{
    display:none;
  }
}

/* ===================================================== */
/*                  PRINT & MISC                         */
/* ===================================================== */
@media print {
  header, nav, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal { display:none!important;}
}

/* ================= EXTRAS: FOCUS STATES ============= */
input:focus, button:focus, a:focus {
  outline: 2px dashed var(--primary);
  outline-offset: 2px;
}

/* ============= HIDE SCROLLBAR FOR MOBILE MENU ======= */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

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