body, html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.row-container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background-color: blue;
  overflow: hidden;
}

.second-row {
  flex-grow: 1;
  border: none;
  margin: 0;
  padding: 0;
}

.first-row {
  background-color: #000;
  padding: 20px 0 0 0;
  display: flex;
  justify-content: center;
}

/* Scrollable area without visible scrollbars */
.scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 14px;
  box-sizing: border-box;

  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari, Opera */
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Buttons container styling */
.buttons {
  display: inline-flex;
  gap: 10px;
  padding: 0 10px;
}

.buttons .dark {
  background: #000;
  left: 50%;
}

/* Button styling */
.btn,
input[type="submit"] {
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  padding: 12px 18px;
  margin: 0 10px;
  font-size: 12px;
  line-height: 19px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  transition: all 0.4s ease-in-out;
}

.btn:hover,
input[type="submit"]:hover {
  transition: all 0.4s ease-in-out;
}

.btn-white {
  border: 2px solid #fff;
  background: transparent;
  color: #fff !important;
}

.btn-white:hover {
  border: 2px solid #fff;
  background: #fff;
  color: #1f1f1f !important;
}

.btn-color {
  background: transparent;
}

.btn-color:hover {
  color: #fff;
}

/* ———————————————————————————————— */
/* gradient fades + clickable zones */
/* ———————————————————————————————— */
.scroll-wrapper {
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;           /* Firefox: hide scrollbar */
}
.scroll-wrapper::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.fade {
  position: absolute;
  top: 0;
  bottom: 14px;       /* match your scrollbar offset */
  width: 40px;        /* width of click/indicator zone */
  z-index: 10;
  cursor: pointer;
  pointer-events: auto; 
}

/* left side */
.fade-left {
  left: 0;
  background: linear-gradient(to right, #000, rgba(0,0,0,0));
}

/* right side */
.fade-right {
  right: 0;
  background: linear-gradient(to left, #000, rgba(0,0,0,0));
}

