/* --- 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;
}

html {
  font-size: 16px;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F9FC;
  color: #244167;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #18457A;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover,
a:focus {
  color: #F2A516;
  outline: none;
}
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #18457A;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.25rem; line-height: 1.4; }
h4 { font-size: 1rem;}

p, .text-section {
  margin-bottom: 16px;
  color: #34405a;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(190, 196, 230, 0.20);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: linear-gradient(90deg, #e6f0fa 0%, #fceae6 100%);
  box-shadow: 0 2px 12px rgba(174, 191, 250, 0.12);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2a305b;
  opacity: 0.82;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #18457A;
  background: #E7F3FF;
  opacity: 1;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 34px;
  border-radius: 22px;
  background: #F2A516;
  color: #fff !important;
  box-shadow: 0 2px 16px rgba(242,165,22,0.08);
  transition: background 0.18s, transform 0.2s, box-shadow 0.18s;
  letter-spacing: 0.03em;
  margin-left: 28px;
  border: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #e39307;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(242,165,22,0.13);
  outline: none;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #18457A;
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 120;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(240, 245, 255, 0.975);
  box-shadow: 0 8px 32px rgba(28,30,46,0.15);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-left: 32px;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.82,0,0.3,1);
  z-index: 3000;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  color: #18457A;
  position: absolute;
  top: 26px;
  right: 34px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(180,195,230,.11);
  cursor: pointer;
  transition: background 0.16s;
  z-index: 3200;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f2a516;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 50px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #18457A;
  padding: 10px 4px;
  border-bottom: 1px solid #E0E6F3;
  transition: color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2A516;
}

@media (max-width: 1024px) {
  header .container {
    gap: 12px;
  }
  .main-nav {
    gap: 16px;
    margin-left: 8px;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 10px 25px;
  }
}
@media (max-width: 900px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 18px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 42px;
    border-radius: 16px;
  }
}

/* --- HERO SECTION --- */
.hero {
  margin-bottom: 60px;
  background: linear-gradient(120deg, #f8f8f9 40%, #e6f0fa 90%);
  padding: 40px 0 50px 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 8px 42px rgba(173,185,239,0.073);
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.hero .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  max-width: 540px;
  gap: 18px;
}
.hero h1 {
  color: #18457A;
  font-size: 2.3rem;
}
.hero p {
  margin-bottom: 14px;
  color: #435384;
  font-size: 1.14rem;
}
.hero .cta-btn {
  margin-left: 0;
  margin-top: 10px;
  font-size: 1.08rem;
}

/* --- FEATURE GRID --- */
.features {
  background: linear-gradient(120deg, #ecf5fb 50%, #fcf5ea 100%);
  border-radius: 32px;
  box-shadow: 0 2px 24px rgba(173,204,239,0.06);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(180,200,255,0.09);
  padding: 24px 16px 22px 16px;
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 276px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.feature-item img {
  width: 46px; height: 46px; opacity:0.93;
}
.feature-item h3 {
  font-size: 1.12rem;
  color: #18457A;
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 0.97rem;
  color: #466199;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 8px 26px rgba(111,167,237,0.11);
  transform: translateY(-4px) scale(1.04);
  outline: none;
}

@media (max-width: 1000px) {
  .features-grid {
    gap: 18px;
  }
  .feature-item {
    min-width: 165px; max-width: 230px;
    padding: 18px 10px 18px 10px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    gap: 12px;
    justify-content: center;
  }
  .feature-item {
    max-width: 100%;
  }
}

/* --- PRODUCT & PROMOTION LISTS --- */
.products-featured, .promotions {
  background: #fbfbfd;
  border-radius: 34px;
  box-shadow:0 1px 16px rgba(185,200,230,.065);
}
.product-list, .promotion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 4px;
}
.product-list li, .promotion-list li {
  background: #f6f8ff;
  color: #18457A;
  border-radius: 14px;
  padding: 17px 18px 13px 18px;
  font-size: 1.09rem;
  margin-bottom: 5px;
  box-shadow: 0 3px 10px rgba(175,202,231,0.10);
}
.promo-countdown {
  margin-top: 8px;
  font-size: 1.02rem;
  color: #B97B00;
  background: #fff7e8;
  border-radius: 11px;
  padding: 8px 13px 8px 13px;
  display: inline-block;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: linear-gradient(90deg, #f5fafd 85%, #f8f2f9 100%);
  border-radius: 42px;
  box-shadow: 0 2px 28px rgba(175,206,234,0.09);
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(190,200,235,.16);
  border: 1px solid #e8eefa;
  transition: box-shadow 0.18s, transform 0.12s;
  max-width: 700px;
}
.testimonial-card p {
  color: #233057;
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #6c7abee;
  display: block;
  margin-top: 4px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 32px rgba(80, 150, 235, 0.13);
  transform: translateY(-3px) scale(1.01);
}

/* --- GENERIC CARDS & GRIDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(200, 205, 255, 0.11);
  padding: 25px 20px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.card:hover, .card:focus {
  box-shadow: 0 12px 38px rgba(200, 200, 245, 0.17);
  transform: translateY(-5px);
  outline: none;
}

.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) {
  .content-grid{ flex-direction: column; }
  .testimonial-card { flex-direction: column;align-items:flex-start;}
  .text-image-section{ flex-direction: column; gap:18px;align-items:flex-start;}
}


/* --- CATEGORY GRIDS --- */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.category-item {
  flex: 1 1 230px;
  min-width: 170px;
  background: #f9fafe;
  border-radius: 17px;
  box-shadow: 0 3px 16px rgba(195,205,237,0.09);
  padding: 22px 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.category-item h2 {
  font-size: 1.18rem; margin-bottom: 7px;
}
.category-item p {
  font-size: 0.99rem; color: #435CA6;
}
.category-item:hover, .category-item:focus {
  box-shadow: 0 7px 28px rgba(150, 180, 229, 0.13);
  transform: translateY(-3px) scale(1.01);
  outline: none;
}
@media (max-width: 850px){
  .category-grid{ gap: 14px;}
  .category-item{ padding: 15px 8px;}
}
@media (max-width: 600px){
  .category-grid{flex-direction:column; gap:8px;}
}

/* --- FORMS & SEARCH (SHOP) --- */
.product-search input[type="text"] {
  padding: 12px 18px;
  font-size: 1.02rem;
  border-radius: 14px;
  border: 1px solid #d6e4fa;
  background: #f7fafd;
  color: #375082;
  outline: none;
  margin-bottom: 14px;
  transition: box-shadow 0.15s, border 0.14s;
}
.product-search input[type="text"]:focus {
  border-color: #F2A516;
  box-shadow: 0 2px 8px rgba(242,165,22,.09);
}
.product-filters button {
  background: #ECF3FC;
  border: none;
  border-radius: 13px;
  color: #18457A;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  margin-right: 10px;
  margin-bottom: 6px;
  cursor: not-allowed;
  opacity: 0.63;
}
.category-navigation {
  margin-top: 6px;
}
.category-navigation a {
  color: #F2A516;
  font-size: 1.07rem;
  font-weight: 600;
  transition: color .15s;
}
.category-navigation a:hover, .category-navigation a:focus {
  color: #c68900;
}

/* --- FAQ (Pomoc) --- */
.faq-accordion div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(200,210,245,0.13);
  padding: 15px 18px 8px 18px;
  color: #244167;
  margin-bottom: 13px;
  font-size: 1.03rem;
}
.faq-accordion strong {
  color: #18457A;
}
.live-chat-info {
  background: #fff7e8;
  border-radius: 10px;
  color: #be8b11;
  padding: 9px 14px;
  margin-top: 10px;
  font-size: 0.98rem;
}

/* --- CONTACT PAGE --- */
.contact-form {
  background: linear-gradient(90deg,#e9f6fe 80%,#fef9e2 100%);
  border-radius: 34px;
  box-shadow: 0 2px 18px rgba(131, 180, 239, 0.10);
}
.form-fields[aria-disabled="true"] {
  opacity: 0.62;
  pointer-events: none;
}
.contact-details ul {
  margin-bottom: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.contact-details img {width:22px;height:22px;}
.map-embed {
  background: #ecf3fc;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 0.97rem;
  color: #5976A6;
  margin-top: 8px;
}

/* --- PROMOTIONS PAGE --- */
.promo-hero {
  background: linear-gradient(95deg, #e6f6fe 40%, #fcf2e2 85%);
  border-radius: 36px;
  box-shadow: 0 3px 22px rgba(211,223,255,.09);
}
.promo-banner {
  background: #fff7e8;
  color: #9b6b04;
  border-radius: 14px;
  padding: 13px 22px;
  font-size: 1.14rem;
  font-weight: 600;
  margin-bottom: 13px;
  width: fit-content;
}
.discount-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.promo-list {
  background: #f9fdfc;
  border-radius: 28px;
}
.how-to-save {
  background: #f6f8ff;
  border-radius: 20px;
}
.how-to-save ul {
  gap: 8px;
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(95deg, #e6f0fa 70%, #fceae6 100%);
  box-shadow: 0 -2px 10px rgba(140,150,200,0.08);
  padding-top: 18px;
}
footer .container {
  padding-top: 19px; padding-bottom: 15px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:8px;
  min-width: 210px;
  max-width: 310px;
}
.footer-brand-info img {
  width: 80px; height: auto;
  margin-bottom: 8px;
  border-radius: 7px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.99rem;
  color: #274178;
  opacity: 0.8;
  transition: color 0.16s, opacity .14s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #F2A516;
  opacity: 1;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a img {
  width: 29px;
  height: 29px;
  opacity: 0.96;
  transition: filter 0.14s, transform 0.15s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: brightness(1.21) drop-shadow(0 1px 2px #f2a51633);
  transform: scale(1.08);
}
.footer-legal {
  flex: 1 1 100%;
  margin-top: 12px;
  text-align: left;
  font-size: 0.94rem;
  color: #7e98bb;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-brand-info img {
    width: 60px;
  }
}

/* --- BUTTONS & INTERACTIVE --- */
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.16s;
}
[disabled], [aria-disabled='true'] {
  pointer-events: none;
  opacity: 0.54;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #e7eef8;
  box-shadow: 0 -2px 16px rgba(100,140,180,.10);
  padding: 22px 16px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  z-index: 5000;
  transition: transform 0.4s cubic-bezier(.7,0,.4,1);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-msg {
  color: #344168;
  flex: 1 1 62%;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn-accept, .cookie-btn-settings, .cookie-btn-reject {
  height: 42px;
  min-width: 70px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 2px;
  transition: background 0.16s, color .18s, box-shadow .14s;
}
.cookie-btn-accept {
  background: #F2A516;
  color: #fff;
  box-shadow:0 1px 10px rgba(242,165,22,0.06);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #c58906;
}
.cookie-btn-reject {
  background: #b6c2d7;
  color: #274178;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #9ea9bd;
}
.cookie-btn-settings {
  background: #fff;
  border: 1px solid #E2E7F2;
  color: #18457A;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #e7eef8;
  border-color: #b6c2d7;
}
@media (max-width: 800px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap:18px;}
  .cookie-banner .cookie-banner-msg{font-size:.98rem;}
}

/* COOKIE MODAL*/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(100,120,165,0.11);
  z-index: 6000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
  animation: fadeIn .35s;
}
@keyframes fadeIn{
  from{ opacity: 0; } to{ opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 95%; max-width: 410px;
  padding: 31px 18px 24px 18px;
  box-shadow: 0 12px 42px rgba(140,170,204,0.17);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalUp .42s cubic-bezier(.85,.08,.26,.99);
}
@keyframes modalUp{
  from{ transform:translateY(75px); opacity:0 } to{ transform: none; opacity:1; }
}
.cookie-modal-content h3 {
  font-size: 1.16rem;
  color: #18457A;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-category-label {
  font-size: 1.01rem;
  color: #2a305b;
  flex: 1;
}
.cookie-category-toggle {
  width: 40px; height: 24px;
  appearance: none;
  background: #e7eef8;
  border-radius: 16px;
  border: 1px solid #CEDAEE;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .19s;
}
.cookie-category-toggle:checked {
  background: #F2A516;
}
.cookie-category-toggle::after {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2.8px; left: 3px;
  transition: left .17s;
  box-shadow: 0 2px 8px rgba(130,130,149,0.13);
}
.cookie-category-toggle:checked::after {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
/* Essential cookies not toggleable */
.cookie-category-essential .cookie-category-toggle {
  opacity: 0.5;
  pointer-events: none;
}

/* --- TYPOGRAPHY HIERARCHY --- */
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 20px;
}
.text-section ul {
  margin-bottom: 18px;
}
.text-section p + p, .text-section ul + p {
  margin-top: 8px;
}

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 600px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.22rem; }
  .hero .container, .hero .content-wrapper { min-height: 0; }
  .cta-btn { font-size: 0.99rem; padding: 11px 19px; border-radius: 17px;}
}

/* --- MICROINTERACTIONS: focus & selection --- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dashed #F2A516;
  outline-offset: 2px;
}

::selection {
  background: #ffe4b7;
  color: #18457A;
}

/* --- SCROLLBAR SOFTNESS --- */
::-webkit-scrollbar {
  width: 8px;
  background: #E7ECFA;
}
::-webkit-scrollbar-thumb {
  background: #B5C1D6;
  border-radius: 8px;
}

/* --- PASTEL SURFACES AND EFFECTS --- */
body, .section, .content-wrapper, .card, .feature-item, .category-item, .testimonial-card, .promo-hero, .products-featured, .promotions, .how-to-save, .contact-form, .promo-list {
  box-shadow: 0 1px 16px rgba(183, 200, 238, 0.045);
}

/* --- END OF STYLE.CSS --- */
