@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:wght@700&family=Source+Sans+Pro:wght@400;600&display=swap');
.strip[data-id=e504e4] {
  --section-id: "e504e4";
  --storage-url: "https://test-czm2tqar.praweb.cz/_section/e504e4";
  --public-url: "https://test-czm2tqar.praweb.cz/_section/e504e4";
  /* Mobile Toggle */
  /* Mobile Menu Overlay */
}
.strip[data-id=e504e4] .header-section {
  width: 100%;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id=e504e4] .top-bar {
  background-color: #70857B;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
}
.strip[data-id=e504e4] .top-bar-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.strip[data-id=e504e4] .top-bar-text {
  color: #FFFFFF;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 600;
}
.strip[data-id=e504e4] .main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(249, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 46, 0.15);
  transition: box-shadow 0.3s ease;
}
.strip[data-id=e504e4] .main-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.strip[data-id=e504e4] .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strip[data-id=e504e4] .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.strip[data-id=e504e4] .logo-wrapper:hover {
  opacity: 0.85;
}
.strip[data-id=e504e4] .logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip[data-id=e504e4] .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #333333;
  font-weight: 700;
  line-height: 1.2;
}
.strip[data-id=e504e4] .nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}
.strip[data-id=e504e4] .nav-link {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
  font-weight: 400;
}
.strip[data-id=e504e4] .nav-link:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E2B4BD;
  transition: width 0.3s ease;
}
.strip[data-id=e504e4] .nav-link:hover {
  color: #E2B4BD;
}
.strip[data-id=e504e4] .nav-link:hover:after {
  width: 100%;
}
.strip[data-id=e504e4] .cta-wrapper {
  display: flex;
  align-items: center;
}
.strip[data-id=e504e4] .btn-order {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #B8962E;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid #B8962E;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
}
.strip[data-id=e504e4] .btn-order:hover {
  background-color: #B8962E;
  color: #FFFFFF;
}
.strip[data-id=e504e4] .mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}
.strip[data-id=e504e4] .mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #333333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.strip[data-id=e504e4] .mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.strip[data-id=e504e4] .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.strip[data-id=e504e4] .mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.strip[data-id=e504e4] .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: #F9F7F2;
  z-index: 1000;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}
.strip[data-id=e504e4] .mobile-menu.active {
  right: 0;
}
.strip[data-id=e504e4] .mobile-menu .nav-link {
  font-size: 22px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.strip[data-id=e504e4] .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 999;
}
.strip[data-id=e504e4] .overlay.active {
  display: block;
}
@media (max-width: 1024px) {
  .strip[data-id=e504e4] .nav-menu {
    gap: 20px;
  }
  .strip[data-id=e504e4] .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .strip[data-id=e504e4] .nav-menu {
    display: none;
  }
  .strip[data-id=e504e4] .mobile-toggle {
    display: flex;
  }
  .strip[data-id=e504e4] .cta-wrapper {
    display: none;
  }
  .strip[data-id=e504e4] .mobile-menu .btn-order {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .strip[data-id=e504e4] .top-bar-text {
    font-size: 11px;
  }
  .strip[data-id=e504e4] .logo-text {
    font-size: 19px;
  }
  .strip[data-id=e504e4] .header-container {
    padding: 10px 15px;
  }
}.strip[data-id="4ccc6b"] {
  --section-id: "4ccc6b";
  --storage-url: "https://test-czm2tqar.praweb.cz/_section/4ccc6b";
  --public-url: "https://test-czm2tqar.praweb.cz/_section/4ccc6b";
}
.strip[data-id="4ccc6b"] .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -80px;
  padding: 120px 0 80px 0;
  overflow: hidden;
}
.strip[data-id="4ccc6b"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  position: relative;
  z-index: 5;
}
.strip[data-id="4ccc6b"] .content-wrapper {
  max-width: 700px;
  text-align: left;
}
.strip[data-id="4ccc6b"] .decorative-line {
  width: 60px;
  height: 2px;
  background-color: #D4AF37;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeRight 1s ease-out 0.2s forwards;
}
.strip[data-id="4ccc6b"] h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 72px);
  color: #F9F7F2;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.strip[data-id="4ccc6b"] h1 em {
  font-style: italic;
  font-weight: 400;
}
.strip[data-id="4ccc6b"] .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(249, 247, 242, 0.9);
  margin-bottom: 50px;
  font-weight: 300;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
.strip[data-id="4ccc6b"] .button-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}
.strip[data-id="4ccc6b"] .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 45px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}
.strip[data-id="4ccc6b"] .btn-primary {
  background-color: #D4AF37;
  color: #FFFFFF;
  border: 1px solid #D4AF37;
}
.strip[data-id="4ccc6b"] .btn-primary:hover {
  background-color: transparent;
  color: #D4AF37;
  transform: translateY(-5px);
}
.strip[data-id="4ccc6b"] .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.strip[data-id="4ccc6b"] .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1a1a1a;
  transform: translateY(-5px);
}
.strip[data-id="4ccc6b"] .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}
.strip[data-id="4ccc6b"] .scroll-indicator span {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: #F9F7F2;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.strip[data-id="4ccc6b"] .mouse {
  width: 20px;
  height: 35px;
  border: 2px solid #D4AF37;
  border-radius: 20px;
  position: relative;
}
.strip[data-id="4ccc6b"] .wheel {
  width: 2px;
  height: 6px;
  background-color: #D4AF37;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}
.strip[data-id="4ccc6b"] .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes scrollWheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .strip[data-id="4ccc6b"] .hero-section {
    padding: 140px 0 100px 0;
  }
  .strip[data-id="4ccc6b"] .content-wrapper {
    max-width: 100%;
    text-align: center;
  }
  .strip[data-id="4ccc6b"] .decorative-line {
    margin: 0 auto 30px auto;
  }
  .strip[data-id="4ccc6b"] .subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .strip[data-id="4ccc6b"] .button-group {
    justify-content: center;
  }
  .strip[data-id="4ccc6b"] .bg-overlay {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
}
@media (max-width: 576px) {
  .strip[data-id="4ccc6b"] .hero-section {
    min-height: 100vh;
    margin-top: 0;
  }
  .strip[data-id="4ccc6b"] .button-group {
    flex-direction: column;
    width: 100%;
  }
  .strip[data-id="4ccc6b"] .btn {
    width: 100%;
  }
}.strip[data-id="8ddd94"] {
  --section-id: "8ddd94";
  --storage-url: "https://test-czm2tqar.praweb.cz/_section/8ddd94";
  --public-url: "https://test-czm2tqar.praweb.cz/_section/8ddd94";
}
.strip[data-id="8ddd94"] .about-branch {
  width: 100%;
  background: linear-gradient(90deg, #F9F7F2 50%, #D6E0DB 50%);
  padding: 100px 0;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}
.strip[data-id="8ddd94"] .content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="8ddd94"] .grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}
.strip[data-id="8ddd94"] .text-side {
  color: #333333;
}
.strip[data-id="8ddd94"] .heading {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #333333;
}
.strip[data-id="8ddd94"] .description p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #444444;
}
.strip[data-id="8ddd94"] .subheading {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin: 40px 0 20px;
  color: #333333;
}
.strip[data-id="8ddd94"] .hours-box {
  background: #E2B4BD;
  color: #ffffff;
  padding: 35px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 15px 30px rgba(226, 180, 189, 0.3);
}
.strip[data-id="8ddd94"] .hours-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  display: block;
}
.strip[data-id="8ddd94"] .hours-content {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}
.strip[data-id="8ddd94"] .image-side {
  position: relative;
}
.strip[data-id="8ddd94"] .image-frame {
  position: relative;
  z-index: 2;
}
.strip[data-id="8ddd94"] .image-frame::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 15px solid #ffffff;
  z-index: -1;
}
.strip[data-id="8ddd94"] .image-frame img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.strip[data-id="8ddd94"] .decoration-wrapper {
  text-align: center;
  margin: 80px 0;
}
.strip[data-id="8ddd94"] .decoration-img {
  max-width: 180px;
  height: auto;
  opacity: 0.9;
}
.strip[data-id="8ddd94"] .map-section {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}
.strip[data-id="8ddd94"] .map-container {
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.1) brightness(0.95);
}
.strip[data-id="8ddd94"] .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D6E0DB;
  mix-blend-mode: multiply;
  opacity: 0.15;
  pointer-events: none;
}
@media (max-width: 992px) {
  .strip[data-id="8ddd94"] .about-branch {
    background: #F9F7F2;
    padding: 60px 0;
  }
  .strip[data-id="8ddd94"] .grid-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .strip[data-id="8ddd94"] .heading {
    font-size: 2.8rem;
  }
  .strip[data-id="8ddd94"] .image-side {
    order: -1;
  }
  .strip[data-id="8ddd94"] .image-frame::after {
    display: none;
  }
  .strip[data-id="8ddd94"] .image-frame {
    border: 10px solid #ffffff;
  }
  .strip[data-id="8ddd94"] .hours-box {
    width: 100%;
    box-sizing: border-box;
  }
}@charset "UTF-8";
.strip[data-id="1237c1"] {
  --section-id: "1237c1";
  --storage-url: "https://test-czm2tqar.praweb.cz/_section/1237c1";
  --public-url: "https://test-czm2tqar.praweb.cz/_section/1237c1";
}
.strip[data-id="1237c1"] .services-section {
  padding: 120px 0;
  background-color: #fcfdfc; /* Velmi jemný šalvějový nádech pro prémiový pocit */
  font-family: "Source Sans Pro", sans-serif;
}
.strip[data-id="1237c1"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="1237c1"] .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.strip[data-id="1237c1"] .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #2c3e36;
  margin: 0;
  position: relative;
  display: inline-block;
}
.strip[data-id="1237c1"] .section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #D4AF37;
  margin: 20px auto 0;
}
.strip[data-id="1237c1"] .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.strip[data-id="1237c1"] .service-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  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(141, 163, 153, 0.1);
  overflow: hidden;
}
.strip[data-id="1237c1"] .service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}
.strip[data-id="1237c1"] .card-number {
  font-family: "Playfair Display", serif;
  font-size: 100px;
  color: #8DA399;
  opacity: 0.15;
  position: absolute;
  top: -10px;
  right: 10px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s ease;
}
.strip[data-id="1237c1"] .service-card:hover .card-number {
  opacity: 0.25;
}
.strip[data-id="1237c1"] .card-icon {
  color: #D4AF37;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.strip[data-id="1237c1"] .service-card:hover .card-icon {
  transform: scale(1.1);
}
.strip[data-id="1237c1"] .card-icon svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}
.strip[data-id="1237c1"] .card-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #2c3e36;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.3;
}
.strip[data-id="1237c1"] .card-text {
  font-size: 17px;
  color: #555555;
  line-height: 1.8;
  margin: 0;
}
.strip[data-id="1237c1"] .shop-button-wrapper {
  text-align: center;
  margin-top: 90px;
}
.strip[data-id="1237c1"] .shop-button {
  display: inline-block;
  padding: 22px 60px;
  background-color: #8DA399;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px; /* Modernější zaoblený tvar */
  transition: all 0.3s ease;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(141, 163, 153, 0.2);
}
.strip[data-id="1237c1"] .shop-button:hover {
  background-color: #7a8f85;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(141, 163, 153, 0.4);
}
@media (max-width: 1024px) {
  .strip[data-id="1237c1"] .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="1237c1"] .services-section {
    padding: 80px 0;
  }
  .strip[data-id="1237c1"] .section-header {
    margin-bottom: 60px;
  }
  .strip[data-id="1237c1"] .section-header h2 {
    font-size: 36px;
  }
  .strip[data-id="1237c1"] .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .strip[data-id="1237c1"] .service-card {
    padding: 40px 30px;
  }
  .strip[data-id="1237c1"] .shop-button-wrapper {
    margin-top: 60px;
  }
  .strip[data-id="1237c1"] .shop-button {
    padding: 18px 40px;
    width: 100%;
    box-sizing: border-box;
  }
}.strip[data-id="67ff54"] {
  --section-id: "67ff54";
  --storage-url: "https://test-czm2tqar.praweb.cz/_section/67ff54";
  --public-url: "https://test-czm2tqar.praweb.cz/_section/67ff54";
}
.strip[data-id="67ff54"] .newsletter-section {
  position: relative;
  min-height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 100px 20px;
  overflow: hidden;
}
.strip[data-id="67ff54"] .newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(249, 247, 242, 0.85);
  z-index: 1;
}
.strip[data-id="67ff54"] .newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.strip[data-id="67ff54"] .content-box {
  max-width: 750px;
  width: 100%;
  border: 1px solid #D4AF37;
  padding: 70px 50px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.strip[data-id="67ff54"] .newsletter-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #333333;
  margin-top: 0;
  margin-bottom: 25px;
  line-height: 1.2;
}
.strip[data-id="67ff54"] .newsletter-text {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  color: #444444;
  margin-bottom: 45px;
  line-height: 1.7;
  font-weight: 400;
}
.strip[data-id="67ff54"] .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 500px;
  margin: 0 auto;
}
.strip[data-id="67ff54"] .input-wrapper {
  flex-grow: 1;
  position: relative;
  text-align: left;
}
.strip[data-id="67ff54"] .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.strip[data-id="67ff54"] .email-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #8DA399;
  background: transparent;
  padding: 14px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #333333;
  outline: none;
  transition: border-color 0.3s ease;
}
.strip[data-id="67ff54"] .email-input:focus {
  border-bottom-color: #6d8279;
}
.strip[data-id="67ff54"] .email-input::placeholder {
  color: #aaaaaa;
}
.strip[data-id="67ff54"] .submit-button {
  background-color: #E2B4BD;
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(226, 180, 189, 0.3);
}
.strip[data-id="67ff54"] .submit-button:hover {
  background-color: #d69ca8;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(226, 180, 189, 0.4);
}
.strip[data-id="67ff54"] .petal {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -15px) rotate(10deg);
  }
}
.strip[data-id="67ff54"] .petal-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.strip[data-id="67ff54"] .petal-2 {
  bottom: 15%;
  right: 8%;
  animation-delay: -2s;
  animation-duration: 8s;
}
.strip[data-id="67ff54"] .petal-3 {
  top: 20%;
  right: 15%;
  animation-delay: -4s;
  width: 15px;
}
.strip[data-id="67ff54"] .petal-4 {
  bottom: 10%;
  left: 20%;
  animation-delay: -1s;
  animation-duration: 7s;
  width: 12px;
}
@media (min-width: 768px) {
  .strip[data-id="67ff54"] .newsletter-form {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .strip[data-id="67ff54"] .content-box {
    padding: 45px 25px;
  }
  .strip[data-id="67ff54"] .newsletter-title {
    font-size: 28px;
  }
  .strip[data-id="67ff54"] .newsletter-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .strip[data-id="67ff54"] .newsletter-section {
    padding: 60px 15px;
  }
}.strip[data-id="9803c5"] {
  --section-id: "9803c5";
  --storage-url: "https://test-czm2tqar.praweb.cz/_section/9803c5";
  --public-url: "https://test-czm2tqar.praweb.cz/_section/9803c5";
}
.strip[data-id="9803c5"] .footer-section {
  background-color: #333333;
  color: #F9F7F2;
  padding: 80px 0 40px 0;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id="9803c5"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="9803c5"] .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.strip[data-id="9803c5"] .footer-logo {
  margin-bottom: 20px;
}
.strip[data-id="9803c5"] .logo-main {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1.2;
}
.strip[data-id="9803c5"] .logo-sub {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F9F7F2;
  opacity: 0.8;
}
.strip[data-id="9803c5"] .footer-about p {
  font-size: 15px;
  line-height: 1.6;
  color: #F9F7F2;
  opacity: 0.9;
  margin: 0;
}
.strip[data-id="9803c5"] .footer-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 25px;
  color: #F9F7F2;
}
.strip[data-id="9803c5"] .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="9803c5"] .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}
.strip[data-id="9803c5"] .footer-contact-list i {
  color: #D4AF37;
  margin-top: 4px;
}
.strip[data-id="9803c5"] .footer-contact-list a {
  color: #F9F7F2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.strip[data-id="9803c5"] .footer-contact-list a:hover {
  color: #D4AF37;
}
.strip[data-id="9803c5"] .footer-socials {
  display: flex;
  gap: 15px;
}
.strip[data-id="9803c5"] .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(249, 247, 242, 0.2);
  border-radius: 50%;
  color: #F9F7F2;
  text-decoration: none;
  transition: all 0.3s ease;
}
.strip[data-id="9803c5"] .social-link:hover {
  background-color: #F4C2C2;
  border-color: #F4C2C2;
  color: #333333;
  transform: translateY(-3px);
}
.strip[data-id="9803c5"] .footer-contact-form .form-group {
  margin-bottom: 15px;
}
.strip[data-id="9803c5"] .footer-contact-form input,
.strip[data-id="9803c5"] .footer-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #F9F7F2;
  font-family: inherit;
  font-size: 14px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.strip[data-id="9803c5"] .footer-contact-form input:focus,
.strip[data-id="9803c5"] .footer-contact-form textarea:focus {
  outline: none;
  border-color: #D4AF37;
}
.strip[data-id="9803c5"] .footer-submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #87A96B;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.strip[data-id="9803c5"] .footer-submit-btn:hover {
  background-color: #76965a;
}
.strip[data-id="9803c5"] .footer-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.strip[data-id="9803c5"] .footer-divider {
  height: 1px;
  background-color: #F9F7F2;
  opacity: 0.1;
  margin-bottom: 30px;
}
.strip[data-id="9803c5"] .footer-bottom {
  text-align: center;
}
.strip[data-id="9803c5"] .footer-copyright p {
  font-size: 12px;
  margin: 0;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .strip[data-id="9803c5"] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .strip[data-id="9803c5"] .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .strip[data-id="9803c5"] .footer-section {
    padding: 60px 0 30px 0;
  }
}.strip[data-id="2f426e"] {
  --section-id: "2f426e";
  --storage-url: "https://test-czm2tqar.praweb.cz/_section/2f426e";
  --public-url: "https://test-czm2tqar.praweb.cz/_section/2f426e";
}
.strip[data-id="2f426e"] .footer-section {
  background: linear-gradient(180deg, #333333 0%, #2a2a2a 100%);
  color: #F9F7F2;
  padding: 80px 0 40px 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.strip[data-id="2f426e"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="2f426e"] .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.strip[data-id="2f426e"] .footer-col h3 {
  color: #F9F7F2;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0;
  position: relative;
  padding-bottom: 10px;
}
.strip[data-id="2f426e"] .footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #C5A059;
}
.strip[data-id="2f426e"] .logo-wrapper {
  margin-bottom: 25px;
  max-width: 160px;
  transition: transform 0.3s ease;
}
.strip[data-id="2f426e"] .logo-wrapper:hover {
  transform: scale(1.02);
}
.strip[data-id="2f426e"] .logo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.strip[data-id="2f426e"] .footer-desc p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #F9F7F2;
  opacity: 0.85;
  margin: 0;
}
.strip[data-id="2f426e"] .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="2f426e"] .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.strip[data-id="2f426e"] .contact-item i {
  color: #C5A059;
  margin-right: 15px;
  width: 20px;
  font-size: 1.1rem;
  margin-top: 3px;
}
.strip[data-id="2f426e"] .contact-item:hover {
  color: #C5A059;
}
.strip[data-id="2f426e"] .social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.strip[data-id="2f426e"] .social-link {
  color: #F9F7F2;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.strip[data-id="2f426e"] .social-link i {
  margin-right: 12px;
  font-size: 1.3rem;
  color: #C5A059;
  transition: transform 0.3s ease;
}
.strip[data-id="2f426e"] .social-link:hover {
  color: #F2C1D1;
}
.strip[data-id="2f426e"] .social-link:hover i {
  transform: translateY(-3px);
  color: #F2C1D1;
}
.strip[data-id="2f426e"] .footer-form {
  display: flex;
  flex-direction: column;
}
.strip[data-id="2f426e"] .footer-form input,
.strip[data-id="2f426e"] .footer-form textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: #F9F7F2;
  padding: 12px 15px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.strip[data-id="2f426e"] .footer-form input:focus,
.strip[data-id="2f426e"] .footer-form textarea:focus {
  outline: none;
  border-color: #C5A059;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 8px rgba(197, 160, 89, 0.2);
}
.strip[data-id="2f426e"] .footer-form input::placeholder,
.strip[data-id="2f426e"] .footer-form textarea::placeholder {
  color: rgba(249, 247, 242, 0.4);
}
.strip[data-id="2f426e"] .footer-form button {
  background-color: #8A9A5B;
  color: #ffffff;
  border: none;
  padding: 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.strip[data-id="2f426e"] .footer-form button:hover {
  background-color: #7a8a4f;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.strip[data-id="2f426e"] .footer-form button:active {
  transform: translateY(0);
}
.strip[data-id="2f426e"] .form-status {
  margin-top: 12px;
  font-size: 0.85rem;
  min-height: 1.5em;
  text-align: center;
}
.strip[data-id="2f426e"] .footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid rgba(249, 247, 242, 0.08);
  text-align: center;
}
.strip[data-id="2f426e"] .footer-bottom p {
  font-size: 0.8rem;
  color: #F9F7F2;
  opacity: 0.5;
  margin: 0;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .strip[data-id="2f426e"] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 640px) {
  .strip[data-id="2f426e"] .footer-section {
    padding: 60px 0 40px 0;
  }
  .strip[data-id="2f426e"] .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strip[data-id="2f426e"] .footer-col {
    text-align: center;
  }
  .strip[data-id="2f426e"] .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .strip[data-id="2f426e"] .logo-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
  .strip[data-id="2f426e"] .contact-item {
    justify-content: center;
  }
  .strip[data-id="2f426e"] .social-link {
    justify-content: center;
  }
  .strip[data-id="2f426e"] .footer-bottom {
    margin-top: 50px;
  }
}