/* ============================ */
/*        GLOBAL FONTS          */
/* ============================ */
@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@400;700;800&family=Archivo:wght@400;600&display=swap');

body {
  font-family: 'Archivo', sans-serif;
  color: #3F4144;
  background: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ============================ */
/*      EXPLORE SLIDER          */
/* ============================ */

.explore-slider-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 60px;
  padding: 20px 30px 0;
  box-sizing: border-box;
}

.explore-title {
  font-family: 'Stack Sans Headline', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: .8px;
  color: #3F4144;
}

.explore-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.explore-viewport {
  overflow: hidden;
  width: 100%;
}

.explore-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform .35s ease-out;
}

/* Cards inside slider */
.explore-track .product-card {
  min-width: 260px;
  flex-shrink: 0;
}

/* Slider arrows */
.explore-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3F4144;
  color: white;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-arrow--prev { left: -10px; }
.explore-arrow--next { right: -10px; }

/* ============================ */
/*        HERO GRID AREA        */
/* ============================ */

.hero-case {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: 60px auto 0;
  gap: 60px;
  padding: 0 30px;
  box-sizing: border-box;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
}

.hero-label {
  display: block;
  width: 100%;
  background: #F7F5F3;
  color: #A3A19D;
  font-family: 'Stack Sans Headline';
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 22px 26px;
  margin: 0 0 0;
  text-decoration: none !important;
}

.hero-text h1 {
  background: #3F4144;
  color: #fff;
  font-family: 'Stack Sans Headline';
  text-transform: uppercase;
  font-weight: 800;
  font-size: 32px;
  padding: 22px 26px;
  margin: 0;
}

.hero-contact-box {
  background: #F7F5F3;
}

.hero-contact-box .box-header {
  background: #A3A19D;
  color: #fff;
  font-family: 'Stack Sans Headline';
  text-transform: uppercase;
  padding: 16px 26px;
  font-weight: 800;
  font-size: 20px;
}

.hero-contact-box .box-content {
  padding: 26px;
}

.hero-text-content {
  padding: 26px;
  border-left: 1px solid rgba(0,0,0,0.05);
}

.hero-text-content p {
  font-size: 17px;
  margin-bottom: 20px;
}

.bottom-cta-box {
  background: #3F4144;
  padding: 50px 26px;
  margin-top: auto;
  text-align: center;
  font-family: 'Stack Sans Headline';
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
}

.bottom-cta-box a {
  background: #fff;
  color: #3F4144;
  text-decoration: none;
  padding: 14px 28px;
  display: inline-block;
  margin-top: 10px;
  transition: 0.25s ease;
}

/* ============================ */
/*        BREADCRUMBS           */
/* ============================ */

.breadcrumbs {
  max-width: 1400px;
  margin: 80px auto;
  padding: 20px 30px 0;
  font-size: 14px;
  color: #666;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================ */
/*        RESPONSIVE            */
/* ============================ */

@media (max-width: 1000px) {
  .hero-case {
    grid-template-columns: 1fr;
  }

  .explore-arrow {
    display: none;
  }
}

