body {
  background: #f4f7f8;
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

body {
  background: #f4f7f8;
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(37,51,81,0.09), 0 1.5px 7px rgba(37,51,81,0.07);
  position: relative;
  margin: 0 auto 32px auto;
  width: 100%;
  max-width: 1200px;        
  min-height: 540px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero-card {
  aspect-ratio: 1 / 1;    /* ZACHOWA PROPORCJĘ KWADRATU */
  height: auto;           /* wysokość automatyczna, wynika z szerokości */
  max-width: 1200px;      /* tyle samo co .future-card */
  width: 100%;
  margin-top: 3em;      
  margin-bottom: 3em;   
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('bg.png') center center/cover no-repeat;
  z-index: 1;
  opacity: 1;
  filter: brightness(1.02) saturate(1.08);
}

.hero-center {
  z-index: 2;
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 75%;          
  min-width: 540px;    
  max-width: 600px;    
  height: auto;
  margin: 0 auto 36px auto;
  display: block;
}

.hero-desc {
  font-size: 1.32rem;
  color: #232323;
  font-weight: 600;
  padding: 18px 28px 13px 28px;
  margin-top: 0;
  display: inline-block;
}
.hero-desc strong {
  color: #19b484;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo-stack {
  position: relative;
  display: flex; 
  display: inline-block;
  width: 100%;
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.logo-bg-rect {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 1;
  width: 50%;
  height: 38%;
  background: #fff;
  border-radius: 9px;
  transform: translate(-50%, -40%);
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.07);
  opacity: 0.93;
  pointer-events: none;
}

.card.future-card {
  display: flex;
  flex-direction: row;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(37,51,81,0.09), 0 1.5px 7px rgba(37,51,81,0.07);
  overflow: hidden;
  min-height: 540px;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  background: #fff;
  padding: 0;
}

.future-left {
  position: relative;
  flex: 1.1;
  min-width: 0;
  background: #e7f7f3;
  display: flex;
  align-items: stretch;
}
.future-person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.future-logo {
  position: absolute;
  top: 30px;
  left: 28px;
  width: 130px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 3px 12px rgba(30,90,80,0.09));
  border-radius: 9px;
  padding: 4px 8px 3px 8px;
}

.future-right {
  flex: 1.3;
  background: #c7f5e3;
  padding: 46px 40px 34px 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.future-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.1px;
  text-shadow: 0 2px 12px rgba(18,55,45,0.05);
}

.future-desc {
  color: #17483b;
  font-size: 1.11rem;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.6;
}
.future-desc strong,
.future-desc b {
  font-weight: 700;
  color: #19b484;
}

.future-bottom-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: -2em;
  flex-wrap: wrap;
}
.future-packs {
  width: 440px;
  max-width: 38vw;
  height: auto;
  object-fit: cover;
  margin-left: -3em;
  margin-bottom: -1.2em;
}
.future-cert {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.future-cert-img {
  width: 180px;
  min-width: 100px;
  height: auto;
  object-fit: cover;
}
.future-cert-desc {
  text-align: center;
  font-size: 1.05rem;
  color: #17483b;
  font-weight: 500;
  line-height: 1.28;
}

@media (max-width: 900px) {
  .card.future-card { flex-direction: column; min-height: 0; }
  .future-left, .future-right { width: 100%; min-height: 220px; }
  .future-logo { top: 15px; left: 12px; width: 180px; }
  .future-right { padding: 28px 5vw 18px 5vw; }

}
@media (max-width: 700px) {
  .hero-desc { font-size: 1.05rem; padding: 14px 10px; }
  .hero-logo { width: 85%; max-width: 260px; margin-bottom: 20px; }
  .future-title { 
    font-size: 1.22rem; 
  	margin-top: 18px;  
    font-size: 2.5rem;
    margin-bottom: 15px;
	margin-top: -5px;
	margin-left: 0em;
	line-height: 1.13;
    text-shadow:
    0 2px 18px rgba(0,0,0,0.18),   /* główna poświata */
    0 1px 1px rgba(0,0,0,0.18),    /* dodatkowa warstwa */
    0 0 24px #fff; 
  }
}

.fresh-card {
  background: #bdeefc;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(37,51,81,0.09), 0 1.5px 7px rgba(37,51,81,0.07);
  position: relative;
  margin: 0 auto 32px auto;
  width: 100%;
  max-width: 1200px;        
  min-height: 540px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fresh-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
}

.fresh-content {
  position: relative;
  z-index: 2;
  padding: 54px 54px 44px 54px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fresh-title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 900;
  text-align: center;
  margin-top: 0em;
  margin-bottom: 34px;
  text-shadow: 0 3px 16px rgba(37,51,81,0.14);
}

.fresh-columns {
  display: flex;
  gap: 52px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.fresh-desc {
  flex: 2;
  color: #1f0d36;
  background: rgba(255,255,255,0.95);
  padding: 25px 23px;
  border-radius: 17px;
  font-size: 1.07rem;
  line-height: 1.65;
  box-shadow: 0 3px 20px 0 rgba(44,82,66,0.03);
  min-width: 320px;
  margin-top: 1.5em;
  margin-bottom: -1.5em;
}

.fresh-sidebar {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 1.6em;
}

.fresh-sidebar-desc {
  color: #1f0d36;
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 18px 14px;
  font-size: 1.01rem;
  font-weight: 600;
  box-shadow: 0 2px 16px 0 rgba(44,82,66,0.03);
  margin-top: 0em;
}

.fresh-ingredients {
  flex: 2;
  color: #134a3e;
  padding: 28px 26px;
  font-size: 1.07rem;
  line-height: 1.65;
  min-width: 320px;
}

.ingredients-title {
  color: #1a4170;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: left;
  letter-spacing: 0.01em;
  margin-top: 0.2em;
  margin-left: -0.4em;
}



.ingredients-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: -2em;
  margin-left: -1em;
}

.ingredients-list p {
 margin-top: 1.06em;
 font-size: 20px;
 color: #1f0d36;
 margin-right:-3em;
}

.ingredients-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.03rem;
  color: #134a3e;
  margin-bottom: 20px;
  line-height: 1.4;
}
.ingredients-list li img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}
.ingredients-list li b {
  font-size: 21px;
  color: #104a61;
  margin-top: 1em;
  margin-right: -0.5em;
  margin-left: -0.25em;
  font-weight: 700;
}

.photo-card {
  background: #f8fbfc;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
  padding: 0;
}
.photo-img-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px; /* możesz zmienić wg potrzeb */
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(30,60,80,0.07);
  display: block;
}

.photo-cert {
  position: absolute;
  right: 40px;
  top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.photo-cert-img {
  width: 12em;
  min-width: 8em;
  height: auto;
  object-fit: cover;
}

.photo-title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 900;
  text-align: center;
  margin-top: 0em;
  margin-bottom: 34px;
  text-shadow: 0 3px 16px rgba(37,51,81,0.14);
}

.photo-title {
  position: absolute;
  top: 120px;      
  left: 50%;    
  transform: translateX(-50%);
  background: #fff;
  color: #144ba3;
  font-size: 2.8rem;
  font-weight: 700;
  border-radius: 56px;
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 5px 36px 0 rgba(30,60,80,0.07);
  z-index: 2;
  letter-spacing: 0.02em;
  min-width: 560px;
  max-width: 770px; 
  pointer-events: none;
}

@media (max-width: 800px) {
  .photo-title-cert-row {
    flex-direction: column;
    align-items: flex-end;
    padding: 0 14px;
    top: 22px;
	}
}

.products-card {
  display: flex;
  flex-direction: row;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(37,51,81,0.09), 0 1.5px 7px rgba(37,51,81,0.07);
  overflow: hidden;
  min-height: 540px;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  background: linear-gradient(135deg, #e8e6e8 0%, #c7c3c7 100%);
  padding: 0;
}

.products-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.products-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #47153f;
  text-align: center;
  margin-bottom: 1em;
  margin-top: 1.5em;
  letter-spacing: 0.03em;
}

.products-desc {
  font-size: 1.16rem;
  color: #4a2444;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 420px;
}

.fav-question {
  font-weight: 900;
  color: #47153f;
  font-size: 1.16em;
  letter-spacing: 0.01em;
}

.products-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.products-image-link {
  display: inline-block;
  transition: transform 0.3s;
  cursor: pointer;
}

.products-image-link:hover .products-image,
.products-image-link:focus .products-image {
  transform: scale(1.10);
}

.products-image {
  width: 720px;
  max-width: 90vw;
  height: auto;
  transition: transform 0.3s;
  margin-top: -2em;
  margin-bottom: 0.5em;
}

.products-click {
	color: gray;
	font-size: 1.05rem;
	margin-top: -2.5em;
}

@media (max-width: 900px) {
  .products-card { max-width: 95vw; aspect-ratio: unset; min-height: 320px; }
  .products-image { width: 96vw; max-width: 98vw; }
}

.products-list {
  width: 100%;
  max-width: 1200px;
  margin: 3em auto 5em auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.product-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(37,51,81,0.09), 0 1.5px 7px rgba(37,51,81,0.07);
  overflow: hidden;
  padding: 42px;
  gap: 36px;
  align-items: center;
}

.product-img {
  width: 320px;
  max-width: 38vw;
  height: auto;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: 16px;
  margin-top: -3.2em;
}

.product-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #47153f;
  margin: 0;
  margin-top: 0;
  margin-bottom: 0.3em;
}

.product-description {
  font-size: 1.12rem;
  color: #1f0d36;
  line-height: 1.6;
}

.products-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 42, 51, 0.7);
  z-index: 1;
}

.modal-content {
  position: relative;
  background: #f2f2f6;
  border-radius: 28px;
  box-shadow: 0 8px 64px rgba(37,51,81,0.21), 0 2px 9px rgba(37,51,81,0.11);
  padding: 54px 48px 38px 48px;
  max-width: 920px;
  width: 96vw;
  max-height: 92vh;
  overflow-y: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 32px;
  background: none;
  border: none;
  font-size: 2.8rem;
  font-weight: 700;
  color: #4a2444;
  cursor: pointer;
  z-index: 3;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: #de3052; }

.products-list-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-top: 10px;
}

.zinq-footer {
  width: 100%;
  background: #f9f6f1;
  padding: 48px 0 36px 0;
  display: flex;
  justify-content: center;
  margin-top: 32px;
  border-top: 1px solid #e0e0e0;
}

.zinq-footer-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
}

.zinq-footer-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
}

.zinq-footer-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

.zinq-footer-contact {
  flex: 0 0 auto;
  text-align: left;
  color: #222;
  font-size: 1.10rem;
  font-weight: 500;
  margin-left: 42px;
  margin-top: 32px;
  line-height: 1.6;
  min-width: 220px;
}

.zinq-footer-company {
  font-weight: 400;
  font-size: 1.14rem;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.pd-bold {
  font-weight: 900;
}

/* Hamburger styles */
.hamburger {
  position: absolute;
  top: 44px;
  right: 44px;
  z-index: 50;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  height: 4px;
  margin: 5px 0;
  background: #232323;
  border-radius: 2px;
  transition: 0.3s;
  width: 36px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Fullscreen menu */
.fullscreen-menu {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #b8e6bc; 
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fadeInMenu 0.4s; 
}
.fullscreen-menu.open {
  display: flex;
}
@keyframes fadeInMenu {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fullscreen-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.fullscreen-menu nav ul li {
  margin: 22px 0;
}
.fullscreen-menu nav ul li a {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.fullscreen-menu nav ul li a:hover,
.fullscreen-menu nav ul li a:focus {
  color: #fff;
}

.fullscreen-menu .close-menu {
  position: absolute;
  top: 36px;
  right: 46px;
  background: transparent;
  border: none;
  font-size: 2.8rem;
  color: #222;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.fullscreen-menu-title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
  margin-top: 16px;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 36px rgba(30,60,80,0.16), 0 1px 2px rgba(30,60,80,0.10);
  user-select: none;
}

.zinq-footer-social {
  margin-left: -0.5em;
  display: flex;
  align-items: center;
  margin-top: 0.18em;
  margin-bottom: -1.8em;
}

.zinq-footer-social img {
  width: 60px;
  height: auto;
  transition: transform 0.2s;
}

.zinq-footer-social img:hover {
  transform: scale(1.18);
}

@media (max-width: 880px) {
	
	.zinq-footer-social {
		margin-top: 0.8em;
		margin-left: 37%;
		margin-bottom: -0.2em;
	}
}

@media (max-width: 450px) {
	
	.zinq-footer-social {
		margin-top: 0.8em;
		margin-left: 36%;
		margin-bottom: -0.2em;
	}
}

@media (max-width: 400px) {
	
	.zinq-footer-social {
		margin-top: 0.8em;
		margin-left: 33.8%;
		margin-bottom: -0.4em;
	}
}

@media (max-width: 360px) {
	
	.zinq-footer-social {
		margin-top: 0.65em;
		margin-left: 32%;
		margin-bottom: -0.4em;
	}
}

@media (max-width: 320px) {
	
	.zinq-footer-social {
		margin-top: 0.65em;
		margin-left: 29%;
		margin-bottom: -0.4em;
	}
}

@media (max-width: 1100px) {
  .card, .card.future-card, .card.fresh-card, .products-card { max-width: 95vw; }
}

@media (max-width: 1170px) {
	.future-packs {
    max-width: 36vw;
    margin-left: -2.7em;
    margin-bottom: -0.7em;
	margin-top: -0.7em;
  }
  .future-cert {
    right: 2.2em;
    bottom: 2em;
    padding: 2px 5px;
	margin-right: 8px;
  }
  .future-cert-img {
    width: 164px;
    min-width: 20px;
  }
  .future-cert-desc {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.35;
  }
}

@media (min-width: 1100px) {
	.photo-title {
	margin-top: -1.4em;
  }
  .photo-cert {
	margin-top: -3.4em;
	margin-right: 0.4em;
  }
  .photo-cert-img {
    width: 12em;
  }
}

@media (max-width: 1100px) {

   .hero-logo {
	width: 60%;          
    min-width: 400px;    
    max-width: 560px;    
    margin: 0 auto 36px auto;
	}
  .future-cert {
    right: 0.9em;
    bottom: 1.6em;
    padding: 2px 5px;
	margin-right: 8px;
  }
  .future-cert-img {
    width: 164px;
    min-width: 20px;
  }
  .future-cert-desc {
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .photo-title {
	margin-top: -1.4em;
  }
  .photo-cert {
	margin-top: -2.5em;
	margin-right: 0.4em;
  }
  .photo-cert-img {
    width: 10em;
  }
  
}

@media (max-width: 1030px) {
  .photo-title {
  margin-top: -1.4em;
  font-size: 2.3rem;
  padding: 22px 0;
  min-width: 40vw;
  }
  .photo-cert {
	margin-top: -2em;
	margin-right: -0.5em;
  }
  .photo-cert-img {
    width: 9em;
  }
}

@media (max-width: 900px) {
	
	.hero-logo {
	width: 62%;          
    min-width: 400px;    
    max-width: 600px;    
    margin: 0 auto 36px auto;
	}
	.future-packs {
    max-width: 70vw;
    margin-left: -3em;
    margin-bottom: -1em;
	margin-top: -1em;
  }
  .future-cert {
    right: 1em;
    bottom: 1.4em;
    padding: 2px 5px;
	margin-right: 8px;
  }
  .future-cert-img {
    width: 162px;
    min-width: 20px;
  }
  .future-cert-desc {
    text-align: center;
    font-size: 1.03rem;
    line-height: 1.35;
  }
  .future-desc, .future-title { max-width: 90%; }
  
  .photo-title {
  margin-top: -1.4em;
  font-size: 2.3rem;
  padding: 22px 0;
  min-width: 50vw;
  }
  
}

@media (max-width: 880px) {
	.zinq-footer {
    padding: 24px 0 18px 0;
    font-size: 0.93rem;
  }
  .zinq-footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 18px;
  }
  .zinq-footer-contact {
    text-align: center;
    margin: 0;
    min-width: unset;
  }
  
  .zinq-footer-logo {
    width: 200px;
    width: 100%;
    height: auto;
  }
  .zinq-footer-logo img {
    max-width: 160px;
  }
  
  .pd-bold {
  font-weight: 700;
  }
}

@media (max-width: 800px) {
	
	.hero-logo {
	width: 60%;          
    min-width: 400px;    
    max-width: 600px;    
    margin: 0 auto 36px auto;
	}
	
  .photo-title {
    margin-top: -2em;
    font-size: 2.3rem;
    padding: 22px 0;
    min-width: 50vw;
  }
  .photo-cert {
	margin-top: -3.1em;
	margin-right: -0.5em;
  }
  .photo-cert-img {
    width: 8em;
  }
}

@media (max-width: 680px) {
	.future-packs {
    max-width: 57vw;
    margin-left: -3em;
    margin-bottom: -1em;
	margin-top: -1em;
  }
  .future-cert {
    right: 1em;
    bottom: 1.4em;
    padding: 2px 5px;
	margin-right: 8px;
  }
  .future-cert-img {
    width: 154px;
    min-width: 20px;
  }
  .future-cert-desc {
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.35;
  }
  
  .photo-title {
    margin-top: -2.75em;
    font-size: 2.02rem;
    padding: 22px 0;
    min-width: 51vw;
  }
  .photo-cert {
	margin-top: -1.2em;
	margin-right: -1.3em;
  }
  .photo-cert-img {
    width: 6.2em;
	height: auto;
	object-fit: cover;
	margin-top: -3.1em;
	margin-right: -0.5em;
  }
  .products-click {
    font-size: 0.86rem;
	margin-top: -3.6em;
  }
}

@media (max-width: 600px) {
  .hamburger {
    top: 18px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  .hamburger span { width: 28px; height: 3px; }
  .fullscreen-menu .close-menu { top: 14px; right: 16px; font-size: 2rem; }
  .fullscreen-menu nav ul li a { font-size: 1.25rem; }
  .fullscreen-menu-title {
    font-size: 2.4rem;
    margin-bottom: 18px;
    margin-top: 4px;
  }
}

@media (max-width: 600px) {

  body {
    padding: 0 4px;
  }
  
  .card,
  .card.future-card,
  .card.fresh-card,
  .fresh-card,
  .photo-card,
  .products-card {
    width: 94vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* KAFEL 1: hero-card */
  .hero-card {
    margin-top: 1em;
    margin-bottom: 1.5em;
    border-radius: 12px;
  }
  .hero-logo {
    min-width: 0;
    max-width: 330px;
    width: 68%;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 0.96rem;
    padding: 10px 6px 10px 6px;
  }

  /* KAFEL 2: future-card */
  .card.future-card {
    flex-direction: column;
    min-height: 0;
    border-radius: 13px;
    padding: 0;
    max-width: 100vw;
  }
  .future-left,
  .future-right {
    width: 100%;
    min-height: 120px;
    padding: 0;
  }
  .future-logo {
    top: 1.5em;
    left: 1.4em;
    width: 128px;
    padding: 2px 4px 2px 4px;
  }
  .future-title {
	margin-top: 18px;  
    font-size: 2.5rem;
    margin-bottom: 10px;
	margin-left: 0.3em;
	line-height: 1.13;
    text-shadow:
    0 2px 18px rgba(0,0,0,0.18),   /* główna poświata */
    0 1px 1px rgba(0,0,0,0.18),    /* dodatkowa warstwa */
    0 0 24px #fff;                 /* delikatne rozświetlenie */
  }
  .future-desc {
    font-size: 0.98rem;
    margin-bottom: 14px;
	margin-left: 1em;
	margin-right: 0.3em;
  }
  .future-bottom-row {
    gap: 8px;
    margin-top: 0.5em;
    flex-wrap: wrap;
  }
  .future-packs {
    max-width: 55vw;
    margin-left: -1em;
    margin-bottom: 2em;
	margin-top: -20px;
  }
  .future-cert {
    right: 0px;
    bottom: 10px;
    padding: 2px 5px;
	margin-right: 8px;
  }
  .future-cert-img {
    width: 132px;
    min-width: 20px;
  }
  .future-cert-desc {
    text-align: center;
    font-size: 0.99rem;
    line-height: 1.35;
  }

  /* KAFEL 3: fresh-card */
  .fresh-card {
    border-radius: 12px;
    min-height: 0;
    margin-bottom: 14px;
  }
  .fresh-content {
    padding: 14px 4px 14px 4px;
  }
  .fresh-title {
    font-size: 1.85rem;
    margin-bottom: 6px;
	margin-top: 10px;
  }
  .fresh-columns {
    flex-direction: column;
    gap: 18px;
	padding: 11px;
  }
  .fresh-desc,
  .fresh-sidebar {
	
    min-width: 0;
    padding: 20px 14px 20px 14px;
    font-size: 0.99rem;
  }
  .fresh-sidebar-desc {
    padding: 10px 4px;
    font-size: 0.97rem;
	padding: 18px 14px 18px 14px;
  }
  .fresh-ingredients {
    padding: 10px 4px;
    font-size: 0.99rem;
  }
  .ingredients-title {
	text-align: center;
    font-size: 1.76rem;
    margin-bottom: 0.5em;
	margin-top: -1.7em;
  }
  .ingredients-list li img {
    width: 60px;
    height: 60px;
	padding: 20px;
	margin-right: -18px;
  }
  
  .ingredients-list p {
	position: flex;
	padding: 2px;
    margin-top: 1.3em;
    font-size: 18px;
    color: #1f0d36;
	margin-right: 2em;
}

  /* KAFEL 4: photo-card */
  .photo-card {
    border-radius: 12px;
  }
  .photo-img-wrap {
    max-width: 100vw;
  }
  .photo-img {
    border-radius: 12px;
  }
  .photo-title {
    min-width: 47vw;
    font-size: 1.45rem;
    padding: 13px 0;
    border-radius: 24px;
	margin-top: -3.8em;
	border-radius: 28px;
  }
  .photo-cert {
    right: 8vw;
    top: 4vw;
  }
  .photo-cert-img {
    width: 6.2em;
	min-width: 1em;
    height: auto;
    object-fit: cover;
	margin-right: -0.4em;
	margin-top: 0.3em;
  }
  

  /* KAFEL 5: products-card */
  .products-card {
    min-height: 90px;
    flex-direction: column;
    border-radius: 13px;
    padding: 0em;

  }
  .products-title {
    font-size: 1.7rem;
    margin-bottom: 0.7em;
    margin-top: 1em;
  }
  .products-desc {
    font-size: 0.89rem;
    margin-bottom: 0.2em;
    max-width: 82vw;
  }
  .products-image {
    width: 95vw;
    max-width: 97vw;
    margin-top: 0;
    margin-bottom: 1em;
  }

  .product-img {
    width: 88vw;
    max-width: 180px;
  }
  .product-title {
	margin-top: 1.22em;
    font-size: 1.5rem;
  }
  .product-description {
    font-size: 0.70rem;
  }
  .modal-content {
    padding: 8px 2vw 8px 2vw;
    max-width: 99vw;
  }
  .products-list-inside {
    gap: 12px;
    margin-top: 6px;
  }

  /* Stopka */
  .zinq-footer {
    padding: 24px 0 18px 0;
    font-size: 0.93rem;
  }
  .zinq-footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 18px;
  }
  .zinq-footer-contact {
    text-align: center;
    margin: 0;
    min-width: unset;
  }
  
  .zinq-footer-logo {
    width: 200px;
    width: 100%;
    height: auto;
  }
  .zinq-footer-logo img {
    max-width: 160px;
  }
  
  .pd-bold {
  font-weight: 700;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 500px) {
	
	.photo-title {
      margin-top: -4.2em;
      font-size: 1.35rem;
      padding: 13px 0;
      min-width: 50vw;
  }
	.photo-cert {
    margin-right: -1.8em;
  }
  .products-click {
    font-size: 0.84rem;
	margin-top: -3.4em;
  }
}

@media (max-width: 440px) {
	
  .hero-logo {
    min-width: 0;
    max-width: 360px;
    width: 67%;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 0.96rem;
    padding: 10px 6px 10px 6px;
  }
  
  
 .future-logo {
    top: 1.2em;
    left: 1.4em;
    width: 108px;
    padding: 2px 4px 2px 4px;
  }

  .future-packs {
    max-width: 58vw;
    margin-left: -0.7em;
    margin-bottom: 1em;
	margin-top: -20px;
  }
  .future-cert {
    right: 0px;
    bottom: 10px;
    padding: 2px 5px;
	margin-right: 8px;
  }
  .future-cert-img {
    width: 116px;
    min-width: 20px;
  }
  .future-cert-desc {
    text-align: center;
    font-size: 0.79rem;
    line-height: 1.35;
  }
  
  .ingredients-title {
	text-align: center;
    font-size: 1.76rem;
    margin-bottom: 0.5em;
	margin-top: -1.3em;
  }
  .ingredients-list li img {
    width: 60px;
    height: 60px;
	padding: 32px;
	margin-right: -18px;
  }
  .ingredients-list p {
	position: flex;
	padding: 2px;
    margin-top: 1.3em;
    font-size: 18px;
    color: #1f0d36;
	margin-right: 2em;
  }
  
  .photo-card {
  border-radius: 12px;
  min-height: 300px !important;
  max-height: 560px !important;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  }
  .photo-img-wrap {
    max-width: 100vw;
  }
  .photo-img {
    border-radius: 12px;
    object-fit: contain;
  }
  .photo-title {
    min-width: 50vw;
    max-width: 95vw;
    font-size: 1.31rem;
    padding: 9px 0;
    border-radius: 22px;
	margin-top: -4.6em;
  }
  .photo-cert-img {
    width: 5em;
	min-width: 3em;
    height: auto;
    object-fit: cover;
	margin-right: 0.3em;
	margin-top: 0.4em;
  }

  .product-img {
    width: 40vw;
    max-width: 160px;
	margin-right: -1.4em;
	margin-left: -1.8em;
  }
  .product-title {
	margin-top: 1.55em;
	margin-bottom: -0.15em;
    font-size: 1.2rem;
  }
  .product-description {
    font-size: 0.70rem;
  }
  .modal-content {
    padding: 8px 2vw 8px 2vw;
    max-width: 99vw;
  }
  .products-list-inside {
    gap: 12px;
    margin-top: 6px;
  }
}

@media (max-width: 400px) {
	.future-packs {
    max-width: 58vw;
    margin-left: -0.3em;
    margin-bottom: 0.85em;
	margin-top: -20px;
  }
  .future-cert {
    right: -0px;
    bottom: 10px;
    padding: 2px 5px;
	margin-right: 8px;
  }
  .future-cert-img {
    width: 96px;
    min-width: 20px;
  }
  .future-cert-desc {
    text-align: center;
    font-size: 0.73rem;
    line-height: 1.35;
  }
  
  .photo-title {
    min-width: 49vw;
    max-width: 95vw;
    font-size: 1.22rem;
    padding: 8px 0;
    border-radius: 22px;
	margin-top: -5em;
  }
  .photo-cert-img {
    width: 5em;
	min-width: 3em;
    height: auto;
    object-fit: cover;
	margin-right: 0.15em;
	margin-top: 0.3em;
  }
  .product-title {
	margin-top: 1.5em;
	margin-bottom: -0.15em;
    font-size: 1.32rem;
  }
  .product-img {
    width: 33vw;
	margin-right: -1.4em;
	margin-left: -1.8em;
  }
  .product-description {
    font-size: 0.66rem;
	margin-bottom: -1.75em;
	margin-right: -1.5em;
  }
  .products-click {
    font-size: 0.82rem;
	margin-top: -3.2em;
  }
}
}

@media (max-width: 370px) {

  .photo-title {
    min-width: 49vw;
    max-width: 95vw;
    font-size: 1.16rem;
    padding: 8px 0;
    border-radius: 22px;
	margin-top: -5.25em;
  }
  .photo-cert-img {
    width: 5em;
	min-width: 3em;
    height: auto;
    object-fit: cover;
	margin-right: 0.15em;
	margin-top: 0.3em;
  }
}

@media (max-width: 360px) {
	
  .photo-title {
    min-width: 50vw;
    max-width: 95vw;
    font-size: 1.07rem;
    padding: 8px 0;
    border-radius: 22px;
	margin-top: -6em;
  }
  .photo-cert-img {
    width: 4.4em;
	min-width: 2em;
    height: auto;
    object-fit: cover;
	margin-right: 0.25em;
	margin-top: 0.35em;
  }

  .future-packs {
    max-width: 55vw;
    margin-left: -0.3em;
    margin-bottom: 1em;
	margin-top: -20px;
  }
  .future-cert {
    right: -0px;
    bottom: 10px;
    padding: 2px 5px;
	margin-right: 8px;
  }
  .future-cert-img {
    width: 88px;
    min-width: 20px;
  }
  .future-cert-desc {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .products-click {
    font-size: 0.8rem;
	margin-top: -3.1em;
  }
}

/* --- BUY MODAL (GDZIE KUPIĆ) --- */
.buy-grid{
  width:100%;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap:22px;
  margin-top: 10px;
}
.buy-item{
  background:#fff;
  border-radius:18px;
  padding:18px;
  text-decoration:none;
  color:#222;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  box-shadow:0 6px 24px rgba(37,51,81,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.buy-item:hover, .buy-item:focus{
  transform: translateY(-2px) scale(1.02);
  box-shadow:0 10px 32px rgba(37,51,81,.14);
}
.buy-item img{
  width:100%;
  height:auto;
  max-width:270px;
  display:block;
}
.buy-item span{
  font-size: 1.2em;
  font-weight:700;
  margin-top:8px;
  margin-bottom:-0.4em;
}
.buy-note{
  margin-top:12px;
  margin-bottom:-1.2em;
  color:#4a2444;
  font-weight:600;
  text-align:center;
  width:100%;
}

.buy-modal .modal-content {
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  padding-top: 3rem;
}

.buy-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  transition: color 0.2s ease;
}

.buy-modal .modal-close:hover,
.buy-modal .modal-close:focus {
  color: #e60023;
}

@media (max-width:850px){
	.buy-note{
	margin-top:20px;
	margin-bottom:-1em;
	color:#4a2444;
	}
}

@media (max-width:600px){
	.buy-note{
	margin-top:16px;
	margin-bottom:0.4em;
	color:#4a2444;
	}
}
@media (max-width:400px){
	.buy-grid{ gap:13px; grid-template-columns: 1fr; justify-items: center; }
	.buy-item span{ font-size: 1.33em; margin-bottom:0.1em; }
	.buy-item img{ max-width: 210px; margin-top: 0.7em; }
	.buy-item { max-width: 240px; width: 100%; padding: 10px; }
	
}