@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap');

.strip.is-sticky {
    position: sticky;
    top: var(--proweb-sticky-offset, 0px);
    z-index: calc(900 - var(--proweb-sticky-index, 0));
}.strip[data-id="9dfd12"] {
  --section-id: "9dfd12";
  --storage-url: "https://test-13rs0vp2.proweb.cz/_section/9dfd12";
  --public-url: "https://test-13rs0vp2.proweb.cz/_section/9dfd12";
}
.strip[data-id="9dfd12"] .header-strip {
  width: 100%;
  background-color: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid hsla(210, 10%, 15%, 0.1);
  padding: 12px 0;
  transition: background-color 0.3s ease;
}
.strip[data-id="9dfd12"] .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strip[data-id="9dfd12"] .logo-wrapper .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: hsl(210, 10%, 15%);
}
.strip[data-id="9dfd12"] .logo-wrapper img {
  height: 45px;
  width: auto;
  object-fit: contain;
}
.strip[data-id="9dfd12"] .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.strip[data-id="9dfd12"] .nav-menu {
  display: flex;
}
.strip[data-id="9dfd12"] .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}
.strip[data-id="9dfd12"] .nav-list li a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: hsl(210, 10%, 15%);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.strip[data-id="9dfd12"] .nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(39, 45%, 70%);
  transition: width 0.3s ease;
}
.strip[data-id="9dfd12"] .nav-list li a:hover {
  color: hsl(39, 40%, 50%);
}
.strip[data-id="9dfd12"] .nav-list li a:hover::after {
  width: 100%;
}
.strip[data-id="9dfd12"] .cta-wrapper .cta-button {
  display: inline-block;
  background-color: hsl(39, 45%, 80%);
  color: hsl(210, 10%, 15%); /* Fixed contrast: dark text on light gold */
  padding: 10px 20px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.strip[data-id="9dfd12"] .cta-wrapper .cta-button:hover {
  background-color: hsl(39, 40%, 70%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.strip[data-id="9dfd12"] .mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}
.strip[data-id="9dfd12"] .mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: hsl(210, 10%, 15%);
  transition: 0.3s;
}
.strip[data-id="9dfd12"] .mobile-cta {
  display: none;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .strip[data-id="9dfd12"] .header-strip {
    padding: 10px 0;
  }
  .strip[data-id="9dfd12"] .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    padding: 80px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .strip[data-id="9dfd12"] .nav-menu.active {
    right: 0;
  }
  .strip[data-id="9dfd12"] .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .strip[data-id="9dfd12"] .nav-list li {
    width: 100%;
  }
  .strip[data-id="9dfd12"] .nav-list li a {
    display: block;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .strip[data-id="9dfd12"] .mobile-toggle {
    display: flex;
  }
  .strip[data-id="9dfd12"] .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .strip[data-id="9dfd12"] .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .strip[data-id="9dfd12"] .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .strip[data-id="9dfd12"] .cta-wrapper {
    display: none;
  }
  .strip[data-id="9dfd12"] .mobile-cta {
    display: block;
  }
}
@media (max-width: 480px) {
  .strip[data-id="9dfd12"] .logo-text {
    font-size: 18px;
  }
  .strip[data-id="9dfd12"] .logo-wrapper img {
    height: 35px;
  }
}.strip[data-id="1bad6a"] {
  --section-id: "1bad6a";
  --storage-url: "https://test-13rs0vp2.proweb.cz/_section/1bad6a";
  --public-url: "https://test-13rs0vp2.proweb.cz/_section/1bad6a";
}
.strip[data-id="1bad6a"] .hero-split-luxury {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #fcfaf7; /* hsl(40, 30%, 96%) approximated */
}
.strip[data-id="1bad6a"] .hero-split-luxury .split-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}
.strip[data-id="1bad6a"] .hero-split-luxury .content-side {
  width: 50%;
  background-color: #fcfaf7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
}
.strip[data-id="1bad6a"] .hero-split-luxury .text-wrapper {
  max-width: 540px;
  width: 100%;
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s ease forwards 0.2s;
}
.strip[data-id="1bad6a"] .hero-split-luxury .decorative-letter {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(200px, 25vw, 400px);
  font-family: "Playfair Display", serif;
  color: #c1a16c;
  opacity: 0.07;
  line-height: 0.8;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transform: translate(-10%, -10%);
}
.strip[data-id="1bad6a"] .hero-split-luxury h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 64px);
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.strip[data-id="1bad6a"] .hero-split-luxury .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  color: #4a4d52; /* hsl(210, 5%, 30%) */
  line-height: 1.7;
  margin: 0 0 40px 0;
  position: relative;
  z-index: 2;
  max-width: 90%;
}
.strip[data-id="1bad6a"] .hero-split-luxury .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.strip[data-id="1bad6a"] .hero-split-luxury .btn-primary {
  display: inline-block;
  background-color: #c1a16c;
  color: #ffffff;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border: 2px solid #c1a16c;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  text-align: center;
}
.strip[data-id="1bad6a"] .hero-split-luxury .btn-primary:hover {
  background-color: #b08d58;
  border-color: #b08d58;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(193, 161, 108, 0.2);
}
.strip[data-id="1bad6a"] .hero-split-luxury .btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #1a1a1a;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border: 2px solid #1a1a1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  text-align: center;
}
.strip[data-id="1bad6a"] .hero-split-luxury .btn-secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 26, 26, 0.1);
}
.strip[data-id="1bad6a"] .hero-split-luxury .image-side {
  width: 50%;
  background-image: url(https://test-13rs0vp2.proweb.cz/_section/1bad6a/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.strip[data-id="1bad6a"] .hero-split-luxury .image-side::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(252, 250, 247, 0.1), transparent);
  pointer-events: none;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .strip[data-id="1bad6a"] .hero-split-luxury .split-container {
    flex-direction: column;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .image-side {
    width: 100%;
    height: 50vh;
    order: 1;
    background-attachment: scroll;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .image-side::after {
    background: linear-gradient(to bottom, rgba(252, 250, 247, 0.1), transparent);
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .content-side {
    width: 100%;
    order: 2;
    padding: 60px 24px;
    text-align: center;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .text-wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .decorative-letter {
    left: 50%;
    transform: translate(-50%, -10%);
    font-size: 250px;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .subtitle {
    max-width: 100%;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .button-group {
    justify-content: center;
    width: 100%;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .btn-primary, .strip[data-id="1bad6a"] .hero-split-luxury .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .strip[data-id="1bad6a"] .hero-split-luxury .content-side {
    padding: 40px 20px;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury h1 {
    font-size: 32px;
  }
  .strip[data-id="1bad6a"] .hero-split-luxury .image-side {
    height: 40vh;
  }
}.strip[data-id="0b07a8"] {
  --section-id: "0b07a8";
  --storage-url: "https://test-13rs0vp2.proweb.cz/_section/0b07a8";
  --public-url: "https://test-13rs0vp2.proweb.cz/_section/0b07a8";
}
.strip[data-id="0b07a8"] .about-salon {
  background-color: #fdfbf7;
  padding: 100px 0;
  overflow: hidden;
}
.strip[data-id="0b07a8"] .about-salon .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="0b07a8"] .about-salon .about-grid {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.strip[data-id="0b07a8"] .about-salon .image-wrapper {
  flex: 1;
  min-width: 320px;
  position: relative;
  padding: 20px;
}
.strip[data-id="0b07a8"] .about-salon .image-wrapper .gold-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 2px solid #d4af37;
  z-index: 1;
  transform: translate(-10px, -10px);
}
.strip[data-id="0b07a8"] .about-salon .image-wrapper .image-container {
  position: relative;
  z-index: 2;
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.08);
  line-height: 0;
}
.strip[data-id="0b07a8"] .about-salon .image-wrapper .image-container img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper {
  flex: 1.2;
  min-width: 320px;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .paper-texture {
  background-color: #ffffff;
  padding: 60px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  border-left: 4px solid #d4af37;
  position: relative;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .paper-texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #2c2c2c;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .separator {
  width: 80px;
  height: 1px;
  background-color: #d4af37;
  margin-bottom: 30px;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .description {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 40px;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .description p {
  margin: 0;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .list-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #2c2c2c;
  margin: 0 0 25px 0;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .benefits-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.4;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8.12,20C11,20 14.27,15.5 17,8M18.92,2C18.72,2 18.5,2 18.32,2.08C13.08,4 10.31,7.38 9.08,10C9.66,9.97 10.27,10 10.91,10.07C12.03,8.2 13.46,6.39 15.82,4.72L17.16,6.35C15.21,7.73 14.1,9.27 13.28,10.87C14.42,11.27 15.5,11.9 16.55,12.7C17.7,10.5 19.36,8 22.46,6.27L21.08,4.72C19.74,5.46 18.66,6.4 17.86,7.43C18.11,5.6 18.5,3.74 18.92,2Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.strip[data-id="0b07a8"] .about-salon .content-wrapper .benefits-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .strip[data-id="0b07a8"] .about-salon {
    padding: 60px 0;
  }
  .strip[data-id="0b07a8"] .about-salon .about-grid {
    flex-direction: column;
    gap: 50px;
  }
  .strip[data-id="0b07a8"] .about-salon .image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .strip[data-id="0b07a8"] .about-salon .content-wrapper {
    width: 100%;
  }
  .strip[data-id="0b07a8"] .about-salon .content-wrapper .paper-texture {
    padding: 40px 30px;
  }
  .strip[data-id="0b07a8"] .about-salon .content-wrapper .section-title {
    font-size: 32px;
  }
}.strip[data-id=e0b8d8] {
  --section-id: "e0b8d8";
  --storage-url: "https://test-13rs0vp2.proweb.cz/_section/e0b8d8";
  --public-url: "https://test-13rs0vp2.proweb.cz/_section/e0b8d8";
}
.strip[data-id=e0b8d8] .services-section {
  background-color: hsl(210, 10%, 12%);
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
  color: hsl(40, 30%, 96%);
  position: relative;
  overflow: hidden;
}
.strip[data-id=e0b8d8] .services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 50% 50%, hsla(43, 48%, 59%, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.strip[data-id=e0b8d8] .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.strip[data-id=e0b8d8] .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.strip[data-id=e0b8d8] .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: hsl(43, 48%, 59%);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}
.strip[data-id=e0b8d8] .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .strip[data-id=e0b8d8] .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .strip[data-id=e0b8d8] .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.strip[data-id=e0b8d8] .service-card {
  background: linear-gradient(135deg, hsl(210, 10%, 18%) 0%, hsl(210, 10%, 14%) 100%);
  border: 1px solid hsla(43, 48%, 59%, 0.3);
  padding: 50px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 420px;
  border-radius: 4px;
  position: relative;
}
.strip[data-id=e0b8d8] .service-card:hover {
  transform: translateY(-15px);
  border-color: hsl(43, 48%, 59%);
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.4), 0 0 20px hsla(43, 48%, 59%, 0.1);
}
.strip[data-id=e0b8d8] .icon-wrapper {
  margin-bottom: 30px;
  color: hsl(43, 48%, 59%);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip[data-id=e0b8d8] .icon-wrapper svg {
  width: 60px;
  height: 60px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  transition: transform 0.4s ease;
}
.strip[data-id=e0b8d8] .service-card:hover .icon-wrapper svg {
  transform: scale(1.1) rotate(5deg);
}
.strip[data-id=e0b8d8] .service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: hsl(43, 48%, 59%);
  margin: 0 0 20px 0;
  font-weight: 600;
}
.strip[data-id=e0b8d8] .service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: hsla(40, 30%, 96%, 0.85);
  margin: 0;
}
@media (max-width: 767px) {
  .strip[data-id=e0b8d8] .services-section {
    padding: 60px 20px;
  }
  .strip[data-id=e0b8d8] .service-card {
    min-height: auto;
    padding: 40px 25px;
  }
  .strip[data-id=e0b8d8] .section-header h2 {
    font-size: 36px;
  }
  .strip[data-id=e0b8d8] .section-header {
    margin-bottom: 40px;
  }
}.strip[data-id="527e2a"] {
  --section-id: "527e2a";
  --storage-url: "https://test-13rs0vp2.proweb.cz/_section/527e2a";
  --public-url: "https://test-13rs0vp2.proweb.cz/_section/527e2a";
}
.strip[data-id="527e2a"] .testimonials-section {
  padding: 100px 0;
  background-color: #fdfbf7;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3%3Cpath d='M0 10 Q 25 0 50 10 T 100 10' fill='none' stroke='%23d4af37' stroke-width='0.5' stroke-opacity='0.1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
}
.strip[data-id="527e2a"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="527e2a"] .section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #333333;
  margin-bottom: 60px;
  font-weight: 400;
}
.strip[data-id="527e2a"] .slider-container {
  position: relative;
  width: 100%;
}
.strip[data-id="527e2a"] .testimonials-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 5px;
}
.strip[data-id="527e2a"] .testimonials-wrapper::-webkit-scrollbar {
  display: none;
}
.strip[data-id="527e2a"] .testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  box-sizing: border-box;
}
.strip[data-id="527e2a"] .quote-icon {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  line-height: 1;
  color: #d4af37;
  margin-bottom: -20px;
  height: 40px;
  opacity: 0.3;
}
.strip[data-id="527e2a"] .stars {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.strip[data-id="527e2a"] .quote-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}
.strip[data-id="527e2a"] .client-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}
.strip[data-id="527e2a"] .slider-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.strip[data-id="527e2a"] .nav-btn {
  background: #ffffff;
  border: 1px solid #d4af37;
  color: #d4af37;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.strip[data-id="527e2a"] .nav-btn:hover {
  background: #d4af37;
  color: #ffffff;
}
@media (max-width: 992px) {
  .strip[data-id="527e2a"] .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
  .strip[data-id="527e2a"] .section-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="527e2a"] .testimonials-section {
    padding: 60px 0;
  }
  .strip[data-id="527e2a"] .testimonial-card {
    flex: 0 0 100%;
  }
  .strip[data-id="527e2a"] .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}.strip[data-id="03f150"] {
  --section-id: "03f150";
  --storage-url: "https://test-13rs0vp2.proweb.cz/_section/03f150";
  --public-url: "https://test-13rs0vp2.proweb.cz/_section/03f150";
}
.strip[data-id="03f150"] .luxury-footer {
  background-color: #121212;
  color: #ececec;
  padding: 80px 0 40px 0;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id="03f150"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="03f150"] .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.strip[data-id="03f150"] .footer-col h3 {
  color: #c5a059;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}
.strip[data-id="03f150"] .footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: #c5a059;
}
.strip[data-id="03f150"] .footer-col p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.strip[data-id="03f150"] .footer-link {
  color: #ececec;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
.strip[data-id="03f150"] .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.strip[data-id="03f150"] .opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="03f150"] .opening-hours li {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.strip[data-id="03f150"] .map-wrapper {
  width: 100%;
  height: 180px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  overflow: hidden;
  margin-top: 20px;
  border-radius: 4px;
}
.strip[data-id="03f150"] .map-wrapper iframe {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.strip[data-id="03f150"] .map-wrapper:hover iframe {
  filter: grayscale(0%);
}
.strip[data-id="03f150"] .social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.strip[data-id="03f150"] .social-link {
  color: #c5a059;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.strip[data-id="03f150"] .social-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
}
.strip[data-id="03f150"] .footer-bottom {
  text-align: center;
}
.strip[data-id="03f150"] .gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c5a059, transparent);
  width: 100%;
  margin-bottom: 30px;
  opacity: 0.4;
}
.strip[data-id="03f150"] .copyright {
  font-size: 14px;
  color: #a0a0a0;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .strip[data-id="03f150"] .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="03f150"] .luxury-footer {
    padding: 60px 0 30px 0;
  }
  .strip[data-id="03f150"] .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }
  .strip[data-id="03f150"] .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .strip[data-id="03f150"] .opening-hours li {
    justify-content: center;
    gap: 10px;
  }
  .strip[data-id="03f150"] .social-links {
    justify-content: center;
  }
  .strip[data-id="03f150"] .map-wrapper {
    height: 220px;
  }
}