/* Lauska Brand Section - Site Integrated Design */
.lauska-full-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 0; /* Standardized vertical padding */
}

.lauska-header {
  text-align: center;
  margin-bottom: 64px;
}

.lauska-main-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 16px;
  letter-spacing: -0.04em;
  color: var(--text);
}

.lauska-lead {
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.lauska-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center; /* Center to allow different heights if needed */
}

/* LEFT: SHOWROOM */
.lauska-showroom {
  display: flex;
  justify-content: center;
}

.lauska-showroom-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  max-width: 540px;
  height: 480px; /* Decreased height */
  display: flex;
  flex-direction: column;
}

.lauska-showroom-card:hover {
  transform: translateY(-8px);
}

.lauska-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: var(--text);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.lauska-carousel-viewport {
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fdfdfd;
  display: flex;
  align-items: center;
}

.lauska-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.lauska-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lauska-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Stretch/fill the container */
  padding: 0; /* Remove padding to touch edges */
}

.lauska-showroom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.lauska-dots {
  display: flex;
  gap: 10px;
}

.lauska-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #eee;
  cursor: pointer;
  transition: all 0.4s ease;
}

.lauska-dot.active {
  background: var(--green);
  width: 36px;
  border-radius: 6px;
}

.lauska-arrows {
  display: flex;
  gap: 12px;
}

.lauska-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
}

.lauska-nav-btn:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}

/* RIGHT: BRAND INFO */
.lauska-logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.lauska-logo-img {
  width: 60px;
  height: 60px;
  padding: 12px;
  background: #646c7c;
  border-radius: 14px;
  object-fit: contain;
}

.lauska-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lauska-byline {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-top: 4px;
  font-weight: 600;
}

.lauska-byline span {
  color: var(--green);
  font-weight: 800;
}

.lauska-tagline {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lauska-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.lauska-highlight {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: rgba(0, 200, 83, 0.05);
  border-radius: 16px;
  border-left: 3px solid var(--green);
  margin-bottom: 40px;
}

.lauska-h-icon {
  font-size: 1.2rem;
  color: var(--green);
  line-height: 1.4;
}

.lauska-highlight p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

.lauska-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.lauska-btn-main {
  padding: 18px 40px !important;
  font-size: 1.05rem !important;
}

.lauska-btn-sub {
  padding: 18px 30px !important;
  font-size: 1.05rem !important;
}

.lauska-trust-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lauska-trust-footer svg {
  color: var(--green);
}

/* Responsive */
@media (max-width: 1200px) {
  .lauska-grid-layout {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .lauska-grid-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .lauska-header {
    margin-bottom: 50px;
  }
  
  .lauska-brand-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .lauska-logo-block {
    justify-content: center;
  }
  
  .lauska-cta-row {
    justify-content: center;
  }
  
  .lauska-trust-footer {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .lauska-full-wrap {
    padding: 60px 20px;
  }
  
  .lauska-showroom-card {
    padding: 20px;
  }
  
  .lauska-slide img {
    height: 400px;
  }
  
  .lauska-cta-row {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}
