@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,400;1,700&family=Playfair+Display:wght@600;700&display=swap');
.strip[data-id=bd9671] {
  --section-id: "bd9671";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/bd9671";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/bd9671";
  /* Search Bar */
  /* Mobile Menu Overlay */
}
.strip[data-id=bd9671] .header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(236, 227, 217, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 93, 78, 0.1);
  transition: all 0.3s ease;
}
.strip[data-id=bd9671] .header-wrapper.scrolled {
  background-color: rgba(236, 227, 217, 0.95);
  padding: 5px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.strip[data-id=bd9671] .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: height 0.3s ease;
}
.strip[data-id=bd9671] .header-wrapper.scrolled .header-container {
  height: 70px;
}
.strip[data-id=bd9671] .logo-zone {
  flex: 0 0 auto;
}
.strip[data-id=bd9671] .logo-link {
  display: block;
}
.strip[data-id=bd9671] .logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}
.strip[data-id=bd9671] .header-wrapper.scrolled .logo-img {
  height: 45px;
}
.strip[data-id=bd9671] .menu-zone {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.strip[data-id=bd9671] .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.strip[data-id=bd9671] .nav-link {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4A5D4E;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.strip[data-id=bd9671] .nav-link:hover {
  color: #D4A373;
}
.strip[data-id=bd9671] .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4A373;
  transition: width 0.3s ease;
}
.strip[data-id=bd9671] .nav-link:hover::after {
  width: 100%;
}
.strip[data-id=bd9671] .icons-zone {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.strip[data-id=bd9671] .icon-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #2D3436;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
  border-radius: 50%;
}
.strip[data-id=bd9671] .icon-btn:hover {
  color: #D4A373;
  background-color: rgba(212, 163, 115, 0.1);
}
.strip[data-id=bd9671] .icon-btn svg {
  width: 20px;
  height: 20px;
}
.strip[data-id=bd9671] .search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ECE3D9;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}
.strip[data-id=bd9671] .search-overlay.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.strip[data-id=bd9671] .search-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.strip[data-id=bd9671] .search-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(74, 93, 78, 0.2);
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  background: white;
}
.strip[data-id=bd9671] .search-submit {
  padding: 0 25px;
  background: #4A5D4E;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: background 0.3s ease;
}
.strip[data-id=bd9671] .search-submit:hover {
  background: #D4A373;
}
.strip[data-id=bd9671] .mobile-toggle {
  display: none;
}
.strip[data-id=bd9671] .mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #ECE3D9;
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.strip[data-id=bd9671] .mobile-menu-overlay.active {
  right: 0;
}
.strip[data-id=bd9671] .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.strip[data-id=bd9671] .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.strip[data-id=bd9671] .mobile-nav-link {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #4A5D4E;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(74, 93, 78, 0.1);
}
@media (max-width: 1150px) {
  .strip[data-id=bd9671] .nav-list {
    gap: 12px;
  }
  .strip[data-id=bd9671] .nav-link {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .strip[data-id=bd9671] .menu-zone {
    display: none;
  }
  .strip[data-id=bd9671] .mobile-toggle {
    display: block;
  }
  .strip[data-id=bd9671] .header-container {
    height: 70px;
  }
  .strip[data-id=bd9671] .logo-img {
    height: 45px;
  }
  .strip[data-id=bd9671] .icons-zone {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .strip[data-id=bd9671] .header-container {
    padding: 0 15px;
  }
  .strip[data-id=bd9671] .profile-btn {
    display: none;
  }
}.strip[data-id="625d5b"] {
  --section-id: "625d5b";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/625d5b";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/625d5b";
  /* Texture simulation for right side */
}
.strip[data-id="625d5b"] section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #FDFCFB 60%, #4A5D4E 60%);
}
.strip[data-id="625d5b"] .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.strip[data-id="625d5b"] .content-column {
  flex: 0 0 60%;
}
.strip[data-id="625d5b"] .image-column {
  flex: 0 0 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.strip[data-id="625d5b"] h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  color: #4A5D4E;
  margin-bottom: 24px;
  line-height: 1.1;
}
.strip[data-id="625d5b"] p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #2D3436;
  line-height: 1.6;
  margin-bottom: 20px;
}
.strip[data-id="625d5b"] .warning {
  font-style: italic;
  color: #D4A373;
  font-weight: 700;
  display: block;
  margin-bottom: 30px;
}
.strip[data-id="625d5b"] .cta-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: #4A5D4E;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.strip[data-id="625d5b"] .cta-button:hover {
  background-color: #D4A373;
  transform: scale(1.05);
}
.strip[data-id="625d5b"] .image-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}
.strip[data-id="625d5b"] .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.strip[data-id="625d5b"] .gold-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #D4A373;
  border-radius: 50%;
  z-index: 1;
  top: -30px;
  right: -30px;
  opacity: 0.3;
}
.strip[data-id="625d5b"] .texture-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(#FDFCFB 1px, transparent 1px);
  background-size: 20px 20px;
}
@media (max-width: 992px) {
  .strip[data-id="625d5b"] section {
    background: #FDFCFB;
    min-height: auto;
  }
  .strip[data-id="625d5b"] .container {
    flex-direction: column;
    padding: 40px 20px;
  }
  .strip[data-id="625d5b"] .content-column, .strip[data-id="625d5b"] .image-column {
    flex: 0 0 100%;
    width: 100%;
  }
  .strip[data-id="625d5b"] h1 {
    font-size: 42px;
  }
  .strip[data-id="625d5b"] .texture-overlay {
    display: none;
  }
  .strip[data-id="625d5b"] .image-column {
    margin-top: 40px;
  }
}@charset "UTF-8";
.strip[data-id=e5ef2e] {
  --section-id: "e5ef2e";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/e5ef2e";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/e5ef2e";
}
.strip[data-id=e5ef2e] section {
  background-color: #ECE3D9;
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.strip[data-id=e5ef2e] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}
.strip[data-id=e5ef2e] .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.strip[data-id=e5ef2e] .info-card {
  background-color: #FFFFFF;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(74, 93, 78, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(212, 163, 115, 0.1);
}
.strip[data-id=e5ef2e] .info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(74, 93, 78, 0.15);
  border-color: rgba(212, 163, 115, 0.3);
}
.strip[data-id=e5ef2e] .icon-wrapper {
  margin-bottom: 30px;
  height: 54px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}
.strip[data-id=e5ef2e] .info-card:hover .icon-wrapper {
  transform: scale(1.1);
}
.strip[data-id=e5ef2e] .card-title {
  color: #4A5D4E;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.3;
}
.strip[data-id=e5ef2e] .divider {
  width: 50px;
  height: 2px;
  background-color: #B88655; /* Ztmavená zlatá pro lepší kontrast */
  margin-bottom: 25px;
  transition: width 0.4s ease;
}
.strip[data-id=e5ef2e] .info-card:hover .divider {
  width: 70px;
}
.strip[data-id=e5ef2e] .card-text {
  color: #2D3436;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1100px) {
  .strip[data-id=e5ef2e] .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .strip[data-id=e5ef2e] .info-card:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .strip[data-id=e5ef2e] section {
    padding: 70px 0;
  }
  .strip[data-id=e5ef2e] .info-grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id=e5ef2e] .info-card:last-child {
    grid-column: span 1;
  }
  .strip[data-id=e5ef2e] .info-card {
    padding: 40px 30px;
  }
  .strip[data-id=e5ef2e] .card-title {
    font-size: 20px;
  }
}.strip[data-id="951a27"] {
  --section-id: "951a27";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/951a27";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/951a27";
}
.strip[data-id="951a27"] .certification-partners {
  width: 100%;
  background-color: #FDFCFB;
  background-image: radial-gradient(#ECE3D9 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 100px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.strip[data-id="951a27"] .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.strip[data-id="951a27"] .frame {
  border: 1px solid #D4A373;
  padding: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
  background-color: #FDFCFB;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strip[data-id="951a27"] .frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.1);
}
.strip[data-id="951a27"] .seal-box {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.strip[data-id="951a27"] .seal-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}
.strip[data-id="951a27"] .text-box {
  flex: 1;
}
.strip[data-id="951a27"] .heading {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: #4A5D4E;
  margin: 0 0 15px 0;
  line-height: 1.2;
  text-wrap: balance;
}
.strip[data-id="951a27"] .divider {
  width: 60px;
  height: 2px;
  background-color: #D4A373;
  margin-bottom: 25px;
}
.strip[data-id="951a27"] .description {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #4A5D4E;
  line-height: 1.7;
}
.strip[data-id="951a27"] .description p {
  margin: 0;
}
@media (max-width: 1024px) {
  .strip[data-id="951a27"] .frame {
    gap: 50px;
    padding: 40px;
  }
  .strip[data-id="951a27"] .seal-box {
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
  }
  .strip[data-id="951a27"] .heading {
    font-size: 30px;
  }
}
@media (max-width: 850px) {
  .strip[data-id="951a27"] .certification-partners {
    padding: 60px 15px;
  }
  .strip[data-id="951a27"] .frame {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 50px 30px;
  }
  .strip[data-id="951a27"] .seal-box {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
  }
  .strip[data-id="951a27"] .divider {
    margin: 0 auto 25px auto;
  }
  .strip[data-id="951a27"] .heading {
    font-size: 28px;
  }
  .strip[data-id="951a27"] .description {
    font-size: 17px;
  }
}@charset "UTF-8";
.strip[data-id=ea44a1] {
  --section-id: "ea44a1";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/ea44a1";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/ea44a1";
}
.strip[data-id=ea44a1] .shipping-banner {
  background-color: #4A5D4E;
  /* Jemný tečkovaný vzor na pozadí */
  background-image: radial-gradient(rgba(236, 227, 217, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 100px 0;
  color: #ECE3D9;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.strip[data-id=ea44a1] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.strip[data-id=ea44a1] .shipping-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}
.strip[data-id=ea44a1] .shipping-box {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(236, 227, 217, 0.1);
  padding: 50px 35px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.strip[data-id=ea44a1] .shipping-box:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 163, 115, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.strip[data-id=ea44a1] .icon-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto 35px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  flex-shrink: 0;
}
.strip[data-id=ea44a1] .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strip[data-id=ea44a1] h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #ECE3D9;
  letter-spacing: 2px;
}
.strip[data-id=ea44a1] .content-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #ECE3D9;
  flex-grow: 1;
}
.strip[data-id=ea44a1] .content-text p {
  margin-bottom: 20px;
}
.strip[data-id=ea44a1] .content-text p:last-child {
  margin-bottom: 0;
}
.strip[data-id=ea44a1] .email-link {
  color: #D4A373;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(212, 163, 115, 0.2);
  padding-bottom: 2px;
  display: inline-block;
}
.strip[data-id=ea44a1] .email-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .strip[data-id=ea44a1] .shipping-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .strip[data-id=ea44a1] .shipping-box {
    max-width: 550px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .strip[data-id=ea44a1] .shipping-banner {
    padding: 70px 0;
  }
  .strip[data-id=ea44a1] .shipping-box {
    padding: 40px 25px;
  }
  .strip[data-id=ea44a1] h2 {
    font-size: 22px;
  }
  .strip[data-id=ea44a1] .icon-wrapper {
    width: 90px;
    height: 90px;
  }
}@charset "UTF-8";
.strip[data-id=bf4205] {
  --section-id: "bf4205";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/bf4205";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/bf4205";
  /* Decorative elements */
}
.strip[data-id=bf4205] .testimonials-masonry {
  background-color: #FDFCFB;
  background-image: radial-gradient(circle at 10% 20%, rgba(236, 227, 217, 0.3) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(74, 93, 78, 0.05) 0%, transparent 25%);
  padding: 100px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.strip[data-id=bf4205] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.strip[data-id=bf4205] .section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
.strip[data-id=bf4205] .section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #4A5D4E;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.strip[data-id=bf4205] .fb-source {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  color: #4A5D4E;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.strip[data-id=bf4205] .fb-source i {
  color: #1877F2;
  font-size: 18px;
}
.strip[data-id=bf4205] .masonry-grid {
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 992px) {
  .strip[data-id=bf4205] .masonry-grid {
    column-gap: 30px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=bf4205] .testimonials-masonry {
    padding: 60px 0;
  }
  .strip[data-id=bf4205] .masonry-grid {
    column-count: 1;
  }
  .strip[data-id=bf4205] .section-title {
    font-size: 34px;
  }
}
.strip[data-id=bf4205] .testimonial-card {
  background: #ffffff;
  padding: 50px 45px;
  margin-bottom: 40px;
  border-radius: 20px;
  border: 1px solid rgba(236, 227, 217, 0.5);
  box-shadow: 0 20px 40px rgba(74, 93, 78, 0.04);
  position: relative;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 576px) {
  .strip[data-id=bf4205] .testimonial-card {
    padding: 40px 30px;
  }
}
.strip[data-id=bf4205] .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(74, 93, 78, 0.08);
  border-color: #D4A373;
}
.strip[data-id=bf4205] .testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 25px;
  font-family: "Playfair Display", serif;
  font-size: 160px;
  line-height: 1;
  color: #ECE3D9;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.strip[data-id=bf4205] .stars {
  color: #D4A373;
  margin-bottom: 25px;
  font-size: 13px;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}
.strip[data-id=bf4205] .quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: #4A5D4E;
  line-height: 1.7;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
}
.strip[data-id=bf4205] .author-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.strip[data-id=bf4205] .author-line {
  height: 1px;
  width: 30px;
  background: #D4A373;
  opacity: 0.5;
}
.strip[data-id=bf4205] .author {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #D4A373;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.strip[data-id=bf4205] .decor-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(212, 163, 115, 0.03);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.strip[data-id=bf4205] .blob-1 {
  top: -100px;
  right: -100px;
}
.strip[data-id=bf4205] .blob-2 {
  bottom: -100px;
  left: -100px;
}.strip[data-id=bef472] {
  --section-id: "bef472";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/bef472";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/bef472";
  /* Decorative waves */
}
.strip[data-id=bef472] .care-guide-section {
  background-color: #ECE3D9;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.strip[data-id=bef472] .care-guide-section::before,
.strip[data-id=bef472] .care-guide-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.strip[data-id=bef472] .care-guide-section::before {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5,73.84-4.36,147.54,16.88,218.32,35.26,113.15,29.38,230.46,40.36,347.09,24,102.61-14.37,201.38-49.52,269.79-96.05V0Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
}
.strip[data-id=bef472] .care-guide-section::after {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5,73.84-4.36,147.54,16.88,218.32,35.26,113.15,29.38,230.46,40.36,347.09,24,102.61-14.37,201.38-49.52,269.79-96.05V0Z' fill='%23ffffff' transform='rotate(180 600 60)'%3E%3C/path%3E%3C/svg%3E");
}
.strip[data-id=bef472] .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.strip[data-id=bef472] .layout-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}
.strip[data-id=bef472] .image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
.strip[data-id=bef472] .organic-image-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  box-shadow: 0 25px 50px -12px rgba(74, 93, 78, 0.25);
  animation: floating 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strip[data-id=bef472] .organic-image-container:hover {
  transform: scale(1.02) rotate(1deg);
}
@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.strip[data-id=bef472] .organic-image-container img,
.strip[data-id=bef472] .organic-image-container generated-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strip[data-id=bef472] .text-content {
  flex: 1;
}
.strip[data-id=bef472] .text-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #4A5D4E;
  margin-bottom: 24px;
  line-height: 1.2;
}
.strip[data-id=bef472] .text-content p,
.strip[data-id=bef472] .text-content li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #2D3436;
  line-height: 1.8;
  margin-bottom: 18px;
}
.strip[data-id=bef472] .highlight-box {
  background-color: #D4A373;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  color: #2D3436; /* Better contrast than white */
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.strip[data-id=bef472] .watering-section {
  margin: 35px 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 15px;
}
.strip[data-id=bef472] .watering-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.strip[data-id=bef472] .watering-header svg {
  width: 28px;
  height: 28px;
  fill: #4A5D4E;
}
.strip[data-id=bef472] .watering-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #4A5D4E;
  margin: 0;
}
.strip[data-id=bef472] .care-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id=bef472] .care-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  transition: transform 0.2s ease;
}
.strip[data-id=bef472] .care-list li:hover {
  transform: translateX(5px);
}
.strip[data-id=bef472] .care-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #D4A373;
  border-radius: 50%;
}
.strip[data-id=bef472] .warning-notice {
  margin-top: 40px;
  padding: 25px;
  border-radius: 12px;
  border: 2px dashed #D4A373;
  background: rgba(212, 163, 115, 0.05);
  position: relative;
}
.strip[data-id=bef472] .warning-notice p {
  margin-bottom: 0;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .strip[data-id=bef472] .layout-grid {
    gap: 40px;
  }
  .strip[data-id=bef472] .text-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .strip[data-id=bef472] .care-guide-section {
    padding: 80px 0;
  }
  .strip[data-id=bef472] .layout-grid {
    flex-direction: column;
    text-align: center;
  }
  .strip[data-id=bef472] .image-wrapper {
    order: -1;
  }
  .strip[data-id=bef472] .watering-header {
    justify-content: center;
  }
  .strip[data-id=bef472] .care-list li {
    text-align: left;
  }
  .strip[data-id=bef472] .watering-section {
    background: rgba(255, 255, 255, 0.5);
  }
}
@media (max-width: 480px) {
  .strip[data-id=bef472] .section-container {
    padding: 0 20px;
  }
  .strip[data-id=bef472] .text-content h2 {
    font-size: 30px;
  }
  .strip[data-id=bef472] .organic-image-container {
    max-width: 320px;
  }
}.strip[data-id="4eaca4"] {
  --section-id: "4eaca4";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/4eaca4";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/4eaca4";
}
.strip[data-id="4eaca4"] .legal-notice-section {
  background-color: #ECE3D9;
  background-image: radial-gradient(#D1C7BD 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip[data-id="4eaca4"] .legal-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.strip[data-id="4eaca4"] .legal-card {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #4A5D4E;
  border-radius: 12px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(74, 93, 78, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strip[data-id="4eaca4"] .legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(74, 93, 78, 0.12);
}
.strip[data-id="4eaca4"] .legal-icon {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  position: relative;
}
.strip[data-id="4eaca4"] .legal-icon svg {
  filter: drop-shadow(0 2px 4px rgba(212, 163, 115, 0.2));
}
.strip[data-id="4eaca4"] .legal-icon::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #D4A373;
  border-radius: 2px;
}
.strip[data-id="4eaca4"] .legal-title {
  color: #4A5D4E;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.strip[data-id="4eaca4"] .legal-content {
  color: #2D3436;
  font-size: 14px;
  line-height: 1.8;
}
.strip[data-id="4eaca4"] .legal-content p {
  margin-bottom: 25px;
}
.strip[data-id="4eaca4"] .legal-content p:last-child {
  margin-bottom: 0;
}
.strip[data-id="4eaca4"] .legal-citation {
  font-style: italic;
  color: #4A5D4E;
  padding: 25px;
  background: #F9F7F5;
  border-radius: 8px;
  margin-top: 30px;
  border-left: 4px solid #D4A373;
}
@media (max-width: 768px) {
  .strip[data-id="4eaca4"] .legal-notice-section {
    padding: 60px 15px;
  }
  .strip[data-id="4eaca4"] .legal-card {
    padding: 40px 25px;
  }
  .strip[data-id="4eaca4"] .legal-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .strip[data-id="4eaca4"] .legal-citation {
    padding: 20px;
  }
}.strip[data-id=d8bcba] {
  --section-id: "d8bcba";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/d8bcba";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/d8bcba";
}
.strip[data-id=d8bcba] .contact-action-section {
  background-color: #4A5D4E;
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
  color: #ECE3D9;
}
.strip[data-id=d8bcba] .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.strip[data-id=d8bcba] .content-wrapper {
  max-width: 800px;
  margin: 0 auto 60px;
}
.strip[data-id=d8bcba] .content-wrapper p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
}
.strip[data-id=d8bcba] .highlight {
  color: #D4A373;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.strip[data-id=d8bcba] .actions-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.strip[data-id=d8bcba] .action-card {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 40px;
  text-decoration: none;
  color: #ECE3D9;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.strip[data-id=d8bcba] .action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D4A373;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
}
.strip[data-id=d8bcba] .action-card:hover {
  border-color: #D4A373;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.strip[data-id=d8bcba] .action-card:hover::before {
  transform: translateY(0);
}
.strip[data-id=d8bcba] .action-card:hover .icon-box,
.strip[data-id=d8bcba] .action-card:hover .action-title {
  color: #2D3436;
}
.strip[data-id=d8bcba] .icon-box, .strip[data-id=d8bcba] .action-title {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.strip[data-id=d8bcba] .icon-box {
  margin-bottom: 25px;
}
.strip[data-id=d8bcba] .icon-box svg {
  width: 64px;
  height: 64px;
  fill: currentColor;
}
.strip[data-id=d8bcba] .action-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (max-width: 768px) {
  .strip[data-id=d8bcba] .contact-action-section {
    padding: 70px 20px;
  }
  .strip[data-id=d8bcba] .content-wrapper {
    margin-bottom: 40px;
  }
  .strip[data-id=d8bcba] .content-wrapper p {
    font-size: 1.05rem;
  }
  .strip[data-id=d8bcba] .actions-grid {
    gap: 25px;
  }
  .strip[data-id=d8bcba] .action-card {
    padding: 40px 30px;
    min-width: 100%;
  }
}.strip[data-id=f19c85] {
  --section-id: "f19c85";
  --storage-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/f19c85";
  --public-url: "https://preview-zygo-cz-20260506.praweb.cz/_section/f19c85";
}
.strip[data-id=f19c85] .footer-section {
  background-color: #3A4A3D;
  color: #ECE3D9;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  padding: 80px 0 40px 0;
}
.strip[data-id=f19c85] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}
.strip[data-id=f19c85] .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 70px;
}
.strip[data-id=f19c85] .footer-col h3 {
  color: #D4A373;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.strip[data-id=f19c85] .footer-col p {
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}
.strip[data-id=f19c85] .newsletter-form {
  display: flex;
  flex-direction: column;
}
.strip[data-id=f19c85] .newsletter-input-group {
  display: flex;
  width: 100%;
}
.strip[data-id=f19c85] .newsletter-input-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(236, 227, 217, 0.3);
  border-right: none;
  color: #ECE3D9;
  padding: 14px 18px;
  flex-grow: 1;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}
.strip[data-id=f19c85] .newsletter-input-group input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(236, 227, 217, 0.6);
}
.strip[data-id=f19c85] .newsletter-btn {
  background-color: #D4A373;
  color: #3A4A3D;
  border: 1px solid #D4A373;
  padding: 14px 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.strip[data-id=f19c85] .newsletter-btn:hover {
  background-color: transparent;
  color: #D4A373;
}
.strip[data-id=f19c85] .country-selector {
  position: relative;
}
.strip[data-id=f19c85] .country-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(236, 227, 217, 0.3);
  color: #ECE3D9;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  appearance: none;
  transition: all 0.3s ease;
}
.strip[data-id=f19c85] .country-select:focus, .strip[data-id=f19c85] .country-select:hover {
  border-color: #D4A373;
  background: rgba(255, 255, 255, 0.1);
}
.strip[data-id=f19c85] .country-selector::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #D4A373;
}
.strip[data-id=f19c85] .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id=f19c85] .footer-links li {
  margin-bottom: 14px;
}
.strip[data-id=f19c85] .footer-links a {
  color: #ECE3D9;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
  display: inline-block;
}
.strip[data-id=f19c85] .footer-links a:hover {
  color: #D4A373;
  opacity: 1;
  transform: translateX(5px);
}
.strip[data-id=f19c85] .social-links {
  display: flex;
  gap: 20px;
}
.strip[data-id=f19c85] .social-links a {
  color: #ECE3D9;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.strip[data-id=f19c85] .social-links a:hover {
  color: #D4A373;
  opacity: 1;
  transform: translateY(-5px);
}
.strip[data-id=f19c85] .footer-bottom {
  border-top: 1px solid #2D3436;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.strip[data-id=f19c85] .payment-methods {
  display: flex;
  gap: 15px;
  opacity: 0.5;
  font-size: 28px;
  color: #ECE3D9;
}
.strip[data-id=f19c85] .copyright {
  color: #ECE3D9;
  opacity: 0.6;
  font-size: 12px;
}
@media (max-width: 1024px) {
  .strip[data-id=f19c85] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=f19c85] .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .strip[data-id=f19c85] .footer-section {
    padding: 60px 0 40px 0;
  }
  .strip[data-id=f19c85] .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strip[data-id=f19c85] .footer-col h3 {
    margin-bottom: 20px;
  }
}