@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Outfit:wght@400;500;700;800&display=swap');
.strip[data-id="445b18"] {
  --section-id: "445b18";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/445b18";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/445b18";
  /* Logo Styles */
  /* Desktop Navigation */
  /* Actions & CTA */
  /* Mobile Toggle */
  /* Mobile Menu */
  /* Staggered animation for mobile menu items */
  /* Responsive */
}
.strip[data-id="445b18"] .header-main {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: rgba(250, 243, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 163, 115, 0.15);
  font-family: "Outfit", sans-serif;
  transition: background-color 0.3s ease;
}
.strip[data-id="445b18"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.strip[data-id="445b18"] .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.strip[data-id="445b18"] .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #D4A373;
  transition: opacity 0.3s ease;
}
.strip[data-id="445b18"] .logo:hover {
  opacity: 0.9;
}
.strip[data-id="445b18"] .logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.strip[data-id="445b18"] .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.strip[data-id="445b18"] .logo-text span {
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #D4A373;
}
.strip[data-id="445b18"] .logo-text small {
  font-size: 13px;
  font-weight: 500;
  color: #5D6648; /* Darker sage for better readability */
}
.strip[data-id="445b18"] .nav-desktop {
  display: block;
}
.strip[data-id="445b18"] .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 36px;
}
.strip[data-id="445b18"] .nav-list li a {
  text-decoration: none;
  color: #5D6648; /* Improved contrast: Darker Sage Green */
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.strip[data-id="445b18"] .nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFD93D;
  transition: width 0.3s ease;
}
.strip[data-id="445b18"] .nav-list li a:hover {
  color: #D4A373;
}
.strip[data-id="445b18"] .nav-list li a:hover::after {
  width: 100%;
}
.strip[data-id="445b18"] .header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.strip[data-id="445b18"] .cta-button {
  background-color: #D4A373;
  color: #FAF3E0;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.2);
  white-space: nowrap;
}
.strip[data-id="445b18"] .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
  background-color: #c49262;
}
.strip[data-id="445b18"] .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: rgba(142, 151, 117, 0.1);
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.strip[data-id="445b18"] .mobile-toggle:hover {
  background: rgba(142, 151, 117, 0.2);
}
.strip[data-id="445b18"] .mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: #5D6648;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.strip[data-id="445b18"] .mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.strip[data-id="445b18"] .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.strip[data-id="445b18"] .mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.strip[data-id="445b18"] .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #FAF3E0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 1000;
  padding: 40px;
}
.strip[data-id="445b18"] .mobile-menu.active {
  right: 0;
}
.strip[data-id="445b18"] .nav-list-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}
.strip[data-id="445b18"] .nav-list-mobile li {
  margin: 20px 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li {
  opacity: 1;
  transform: translateX(0);
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(1) {
  transition-delay: 0.1s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(2) {
  transition-delay: 0.2s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(3) {
  transition-delay: 0.3s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(4) {
  transition-delay: 0.4s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(5) {
  transition-delay: 0.5s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(6) {
  transition-delay: 0.6s;
}
.strip[data-id="445b18"] .nav-list-mobile li a {
  text-decoration: none;
  color: #5D6648;
  font-size: 28px;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
  padding: 10px;
}
.strip[data-id="445b18"] .nav-list-mobile li a:hover {
  color: #D4A373;
}
.strip[data-id="445b18"] .cta-button-mobile {
  display: inline-block;
  margin-top: 30px;
  background-color: #D4A373;
  color: #FAF3E0;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.2);
}
@media (max-width: 1024px) {
  .strip[data-id="445b18"] .nav-list {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .strip[data-id="445b18"] .nav-desktop {
    display: none;
  }
  .strip[data-id="445b18"] .mobile-toggle {
    display: flex;
  }
  .strip[data-id="445b18"] .header-wrapper {
    height: 70px;
  }
  .strip[data-id="445b18"] .cta-button {
    display: none;
  }
}
@media (max-width: 480px) {
  .strip[data-id="445b18"] .container {
    padding: 0 16px;
  }
  .strip[data-id="445b18"] .logo-text span {
    font-size: 19px;
  }
  .strip[data-id="445b18"] .logo-icon {
    width: 36px;
    height: 36px;
  }
  .strip[data-id="445b18"] .logo-text small {
    font-size: 11px;
  }
}.strip[data-id="22f8f9"] {
  --section-id: "22f8f9";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/22f8f9";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/22f8f9";
}
.strip[data-id="22f8f9"] .hero-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #FAF3E0 0%, #F1F5E9 100%);
  overflow: hidden;
  position: relative;
}
.strip[data-id="22f8f9"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.strip[data-id="22f8f9"] .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
}
.strip[data-id="22f8f9"] .hero-content {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: relative;
}
.strip[data-id="22f8f9"] .decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
.strip[data-id="22f8f9"] .decor-item {
  position: absolute;
  fill: #FFD93D;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.strip[data-id="22f8f9"] .decor-paw-1 {
  top: -60px;
  left: -40px;
  transform: rotate(-15deg);
}
.strip[data-id="22f8f9"] .decor-bone-1 {
  bottom: 20px;
  right: 20px;
  transform: rotate(45deg);
  animation-delay: -2s;
}
.strip[data-id="22f8f9"] .decor-dots {
  top: 40%;
  left: -80px;
  opacity: 0.2;
  animation-delay: -4s;
}
.strip[data-id="22f8f9"] h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  color: #8E9775;
  line-height: 1.1;
  margin: 0 0 28px 0;
}
.strip[data-id="22f8f9"] p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #4A4540;
  line-height: 1.7;
  margin: 0 0 48px 0;
  max-width: 600px;
}
.strip[data-id="22f8f9"] .hero-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.strip[data-id="22f8f9"] .btn-primary {
  display: inline-block;
  background-color: #D4A373;
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strip[data-id="22f8f9"] .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.4);
  background-color: #c59262;
}
.strip[data-id="22f8f9"] .btn-secondary {
  display: inline-block;
  border: 2px solid #8E9775;
  color: #8E9775;
  padding: 18px 38px;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.strip[data-id="22f8f9"] .btn-secondary:hover {
  background-color: #8E9775;
  color: #ffffff;
  transform: translateY(-3px);
}
.strip[data-id="22f8f9"] .hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.strip[data-id="22f8f9"] .image-bg-blob {
  position: absolute;
  width: 110%;
  height: 110%;
  background: #E9EDC9;
  z-index: -1;
  border-radius: 60% 40% 70% 30%/30% 60% 40% 70%;
  animation: morph 10s ease-in-out infinite;
}
.strip[data-id="22f8f9"] .image-mask {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 40% 60% 40% 60%/60% 40% 60% 40%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}
.strip[data-id="22f8f9"] .image-mask:hover {
  transform: scale(1.02) rotate(1deg);
}
.strip[data-id="22f8f9"] .image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(-20px) rotate(var(--rot, 0deg));
  }
}
@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 70% 30%/30% 60% 40% 70%;
  }
  50% {
    border-radius: 40% 60% 30% 70%/60% 30% 70% 40%;
  }
}
@media (max-width: 1024px) {
  .strip[data-id="22f8f9"] .hero-grid {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .strip[data-id="22f8f9"] .hero-section {
    padding: 80px 0;
  }
  .strip[data-id="22f8f9"] .hero-grid {
    grid-template-columns: 100%;
    text-align: center;
    gap: 60px;
  }
  .strip[data-id="22f8f9"] .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .strip[data-id="22f8f9"] .hero-image {
    order: 2;
    max-width: 450px;
    margin: 0 auto;
  }
  .strip[data-id="22f8f9"] p {
    margin-left: auto;
    margin-right: auto;
  }
  .strip[data-id="22f8f9"] .hero-actions {
    justify-content: center;
  }
  .strip[data-id="22f8f9"] .decor-dots {
    left: 0;
  }
}
@media (max-width: 576px) {
  .strip[data-id="22f8f9"] .hero-section {
    padding: 60px 0;
  }
  .strip[data-id="22f8f9"] .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .strip[data-id="22f8f9"] .btn-primary, .strip[data-id="22f8f9"] .btn-secondary {
    width: 100%;
    text-align: center;
  }
}.strip[data-id="685b7d"] {
  --section-id: "685b7d";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/685b7d";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/685b7d";
}
.strip[data-id="685b7d"] .about-us-section {
  background-color: #FAF3E0;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.strip[data-id="685b7d"] .bg-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
  transform: rotate(15deg);
}
.strip[data-id="685b7d"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.strip[data-id="685b7d"] .about-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}
.strip[data-id="685b7d"] .image-column {
  flex: 1;
}
.strip[data-id="685b7d"] .content-column {
  flex: 1.2;
}
.strip[data-id="685b7d"] .image-container {
  position: relative;
  padding-left: 20px;
  padding-bottom: 20px;
}
.strip[data-id="685b7d"] .decorative-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: #FFD93D;
  border-radius: 30px;
  z-index: 1;
  transform: rotate(-2deg);
}
.strip[data-id="685b7d"] .image-inner {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.strip[data-id="685b7d"] .image-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.strip[data-id="685b7d"] .image-container:hover .image-inner {
  transform: scale(1.02) rotate(1deg);
}
.strip[data-id="685b7d"] .section-overline {
  display: block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8E9775;
  margin-bottom: 10px;
}
.strip[data-id="685b7d"] .section-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #D4A373;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.1;
}
.strip[data-id="685b7d"] .section-description {
  font-size: 18px;
  line-height: 1.8;
  color: #5D5D5D;
  margin-bottom: 40px;
}
.strip[data-id="685b7d"] .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.strip[data-id="685b7d"] .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.strip[data-id="685b7d"] .feature-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.strip[data-id="685b7d"] .paw-icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #8E9775;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.strip[data-id="685b7d"] .paw-icon-wrapper svg {
  width: 100%;
  height: 100%;
}
.strip[data-id="685b7d"] .feature-text {
  font-size: 16px;
  font-weight: 600;
  color: #4A4A4A;
  line-height: 1.3;
}
@media (max-width: 1100px) {
  .strip[data-id="685b7d"] .section-title {
    font-size: 40px;
  }
  .strip[data-id="685b7d"] .about-grid {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .strip[data-id="685b7d"] .about-us-section {
    padding: 80px 0;
  }
  .strip[data-id="685b7d"] .about-grid {
    flex-direction: column;
    text-align: center;
  }
  .strip[data-id="685b7d"] .image-container {
    max-width: 450px;
    margin: 0 auto;
  }
  .strip[data-id="685b7d"] .feature-list {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .strip[data-id="685b7d"] .feature-item {
    justify-content: flex-start;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .strip[data-id="685b7d"] .section-title {
    font-size: 32px;
  }
  .strip[data-id="685b7d"] .section-description {
    font-size: 16px;
  }
}@charset "UTF-8";
.strip[data-id="23d792"] {
  --section-id: "23d792";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/23d792";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/23d792";
  /* Dekorativní prvky na pozadí */
}
.strip[data-id="23d792"] .advantages-section {
  background-color: rgba(142, 151, 117, 0.05);
  padding: 100px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.strip[data-id="23d792"] .bg-decoration {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(212, 163, 115, 0.05);
  z-index: 0;
}
.strip[data-id="23d792"] .bg-decoration-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}
.strip[data-id="23d792"] .bg-decoration-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}
.strip[data-id="23d792"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.strip[data-id="23d792"] .section-header {
  text-align: center;
  margin-bottom: 70px;
}
.strip[data-id="23d792"] .title {
  color: #8E9775;
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 15px;
  letter-spacing: -0.5px;
}
.strip[data-id="23d792"] .wave-divider {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.strip[data-id="23d792"] .advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.strip[data-id="23d792"] .advantage-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.strip[data-id="23d792"] .advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(142, 151, 117, 0.12);
}
.strip[data-id="23d792"] .icon-box {
  background-color: #FFD93D;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255, 217, 61, 0.2);
}
.strip[data-id="23d792"] .advantage-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  background-color: #8E9775;
}
.strip[data-id="23d792"] .advantage-card:hover .icon-box svg {
  fill: #ffffff;
}
.strip[data-id="23d792"] .icon-box svg {
  transition: fill 0.3s ease;
}
.strip[data-id="23d792"] .card-title {
  color: #8E9775;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 18px;
}
.strip[data-id="23d792"] .card-text {
  color: #4a5568; /* Tmavší břidlicová pro lepší kontrast */
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1100px) {
  .strip[data-id="23d792"] .advantages-grid {
    gap: 30px;
  }
  .strip[data-id="23d792"] .advantage-card {
    padding: 50px 30px;
  }
}
@media (max-width: 992px) {
  .strip[data-id="23d792"] .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip[data-id="23d792"] .title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="23d792"] .advantages-section {
    padding: 80px 0;
  }
  .strip[data-id="23d792"] .advantages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .strip[data-id="23d792"] .title {
    font-size: 32px;
  }
  .strip[data-id="23d792"] .bg-decoration-1 {
    width: 150px;
    height: 150px;
  }
}@charset "UTF-8";
.strip[data-id=d019ff] {
  --section-id: "d019ff";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/d019ff";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/d019ff";
  /* Dekorativní prvek - tlapka v pozadí */
}
.strip[data-id=d019ff] .testimonials-section {
  background-color: #FAF3E0;
  padding: 100px 20px;
  font-family: "Outfit", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id=d019ff] .testimonials-section::before {
  content: "🐾";
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 120px;
  opacity: 0.05;
  transform: rotate(-15px);
  pointer-events: none;
}
.strip[data-id=d019ff] .testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.strip[data-id=d019ff] .testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}
.strip[data-id=d019ff] .testimonials-header h2 {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: #2D2D2D;
  margin: 0;
  position: relative;
  display: inline-block;
}
.strip[data-id=d019ff] .testimonials-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #D4A373;
  border-radius: 2px;
}
.strip[data-id=d019ff] .carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.strip[data-id=d019ff] .carousel-viewport {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip[data-id=d019ff] .quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 150px;
  line-height: 1;
  color: #8F9779;
  opacity: 0.1;
  font-family: serif;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.strip[data-id=d019ff] .testimonial-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
.strip[data-id=d019ff] .testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.strip[data-id=d019ff] .testimonial-card.next {
  transform: translateY(-50%) translateX(30px);
}
.strip[data-id=d019ff] .testimonial-card.prev {
  transform: translateY(-50%) translateX(-30px);
}
.strip[data-id=d019ff] .stars-rating {
  margin-bottom: 25px;
  color: #FFD93D;
  font-size: 22px;
  display: flex;
  gap: 4px;
  z-index: 1;
}
.strip[data-id=d019ff] .testimonial-text {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: #4A4A4A;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
}
.strip[data-id=d019ff] .client-info {
  z-index: 1;
}
.strip[data-id=d019ff] .client-name {
  font-size: 16px;
  font-weight: 700;
  color: #D4A373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.strip[data-id=d019ff] .carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.strip[data-id=d019ff] .nav-btn {
  background: white;
  border: 2px solid #D4A373;
  color: #D4A373;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
  padding: 0;
}
.strip[data-id=d019ff] .nav-btn:hover {
  background-color: #D4A373;
  color: #FAF3E0;
  transform: scale(1.1);
}
.strip[data-id=d019ff] .carousel-dots {
  display: flex;
  gap: 10px;
}
.strip[data-id=d019ff] .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D4A373;
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.strip[data-id=d019ff] .dot.active {
  opacity: 1;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .strip[data-id=d019ff] .testimonials-section {
    padding: 60px 15px;
  }
  .strip[data-id=d019ff] .carousel-viewport {
    min-height: 420px;
  }
  .strip[data-id=d019ff] .quote-icon {
    font-size: 120px;
    top: -10px;
  }
  .strip[data-id=d019ff] .carousel-nav {
    gap: 20px;
  }
}.strip[data-id=a11ecc] {
  --section-id: "a11ecc";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/a11ecc";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/a11ecc";
}
.strip[data-id=a11ecc] .footer-section {
  background-color: #6D7558;
  padding: 80px 0 50px 0;
  width: 100%;
  color: #FAF3E0;
}
.strip[data-id=a11ecc] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id=a11ecc] .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.strip[data-id=a11ecc] .footer-col h3 {
  color: #FFD93D;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.strip[data-id=a11ecc] .footer-col p,
.strip[data-id=a11ecc] .footer-col a {
  color: #FAF3E0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  margin: 0 0 12px 0;
  display: block;
  transition: all 0.3s ease;
}
.strip[data-id=a11ecc] .footer-col a:hover {
  color: #FFD93D;
  padding-left: 5px;
}
.strip[data-id=a11ecc] .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.strip[data-id=a11ecc] .contact-icon {
  flex-shrink: 0;
  color: #FFD93D;
  margin-top: 4px;
}
.strip[data-id=a11ecc] .social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.strip[data-id=a11ecc] .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #A45D5D;
  color: #FAF3E0;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.strip[data-id=a11ecc] .social-icon:hover {
  background-color: #FFD93D;
  color: #6D7558;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.strip[data-id=a11ecc] .footer-bottom {
  border-top: 1px solid rgba(250, 243, 224, 0.2);
  padding-top: 30px;
  text-align: center;
}
.strip[data-id=a11ecc] .footer-bottom p {
  color: #FAF3E0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .strip[data-id=a11ecc] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 640px) {
  .strip[data-id=a11ecc] .footer-section {
    padding: 60px 0 40px 0;
  }
  .strip[data-id=a11ecc] .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .strip[data-id=a11ecc] .footer-col h3 {
    justify-content: center;
  }
  .strip[data-id=a11ecc] .social-links {
    justify-content: center;
  }
  .strip[data-id=a11ecc] .contact-item {
    justify-content: center;
  }
  .strip[data-id=a11ecc] .footer-col a:hover {
    padding-left: 0;
  }
}