/** Shopify CDN: Minification failed

Line 34:2 Unexpected "{"
Line 34:3 Expected identifier but found "%"
Line 34:46 Unexpected "{"
Line 34:47 Expected identifier but found "%"

**/
.hero-flooring {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-flooring__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-flooring__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for readability */
.hero-flooring__overlay {
  position: absolute;
  inset: 0;
  {% comment %} background: rgba(0,0,0,0.35); {% endcomment %}
  z-index: 1;
}

.hero-flooring__content {
  position: relative;
  z-index: 2;
  max-width: 685px;
  padding-left: 150px;
  color: #fff;
}

.hero-flooring__logo {
  margin-bottom: 25px;
}

.hero-flooring__logo img {
  max-width: 240px;
}

.hero-flooring__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    font-family: 'Encode Sans';
    color: #fff;
    letter-spacing: normal;
}

.hero-flooring__subtitle {
    font-size: 18px;
    letter-spacing: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Encode Sans SemiBold';
    font-weight: 600;
    line-height: 1.3;
    width: 70%;
}

.hero-flooring__btn {
    display: inline-block;
    background: #ffffff;
    color: #000;
    padding: 7px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 18px;
    font-family: 'Encode Sans';
    letter-spacing: normal;
}

.hero-flooring__btn:hover {
  background: #f2f2f2;
}

/* Scroll Arrow */
.hero-flooring__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.hero-flooring__scroll svg {
  width: 50px;
  height: 40px;
  fill: #ffffff;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Responsive */
@media (max-width: 990px) {
  .hero-flooring {
    height: 80vh;
  }

  .hero-flooring__content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-flooring__title {
    font-size: 36px;
  }
}

@media (max-width: 430px) {
    .hero-flooring__content {
        text-align: -webkit-center;
    }
}