.hero-banner-section {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.hero-banner-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #E0E0E0;
}

/* Left Side - Content */
.hero-content-side {
 width: 50%;
  /* CSS Grid Pattern - Clean, no scaling artifacts */
  background-image:
    linear-gradient(#E0E0E0 1px, transparent 1px),
    linear-gradient(90deg, #E0E0E0 1px, transparent 1px);
  background-size: 30px 30px;
  /* Definitive grid cell size */
  background-position: -1px -1px;
  background-color: #F1F2F2;
  /* Align lines */
  background-repeat: repeat;
  padding: 80px 50px;
  padding-left:10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid #E0E0E0;
  box-sizing: border-box;
  /* Ensure padding doesn't affect width if not set globally */
}

/* Right Side - Image */
.hero-image-side {
  width: 50%;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  /* Makes the image stretch */
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  /* Absolute position to cover the full height of the parent flex item */
  top: 0;
  left: 0;
}

.hero-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #1D1E1D;
  /* Dark text */
  margin-bottom: 20px;
  color: #0c0c0c;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.hero-rating .stars {
  display: flex;
  gap: 4px;
}

.hero-rating .trust-text {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.hero-title span {
  color: #249e6b;
  /* Green highlight if they use span, or we can force it with CSS if we wrap specific words. For now, strict title. */
}

.hero-description {
  font-size: 18px;
  line-height: 1.5;
  color: #1D1E1D;
  margin-bottom: 40px;
  max-width: 450px;
}

.hero-button {
  display: inline-block;
  background-color: #249e6b;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: fit-content;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  /* Cut bottom-left corner */
}

.hero-button:hover {
  background-color: #1e8558;
  color: #ffffff;
}

/* Decoration arrow */
.hero-arrow-decoration {
  position: absolute;
  bottom: 50px;
  right: 100px;
}

.hero-arrow-decoration img {
  width: 60px;
}

/* Right Side - Image */
.hero-image-side {
  width: 50%;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  /* Fallback */
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-banner-wrapper {
    flex-direction: column-reverse;
    /* Image on top, Content on bottom? No, request image 5 shows content top (mobile header?), wait.
        Let's check Image 5 (mobile view).
        Image 5 shows: Header, then Image, then Grid content with Title "Skandinaviskos...", text, button.
        So Image is FIRST (Top), then Content (Bottom). 
        Wait, in standard stacking (flex-direction: column), the first child comes first.
        My HTML has Content (first), Image (second).
        So I need column-reverse to put Image (2nd div) on top, and Content (1st div) on bottom.
        */
    flex-direction: column-reverse;
  }

  .hero-content-side {
    width: 100%;
    border-right: none;
    padding: 40px 20px;
    text-align: left;
    border-top: 1px solid #E0E0E0;
  }

  .hero-image-side {
    width: 100%;
    height: 300px;
    /* Fixed height for mobile hero image */
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-arrow-decoration {
    display: none;
    /* Usually hide decorative arrows on mobile or adjust */
  }
}