/* FLOOR TILE USA CAROUSEL */

.ftu-carousel {
  position: relative;
}

.ftu-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.ftu-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: stretch;
}

.ftu-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  background: #D3D3D3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

/* IMAGE */
.ftu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BODY */
.ftu-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
  flex: 1;
}

/* TITLE */
.ftu-body h3 {
  margin: 0 0 10px;
  font-size: 16px;
  text-align: center;
}

/* DESCRIPTION (equal height control) */
.ftu-body p {
  flex-grow: 1;
  min-height: 80px; /* THIS creates equal height */
  text-align: center;
}


html {
  font-family: Arial, Helvetica, sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

.ftu-card-title {
  margin:0;
    font-size:14px;
    font-weight:700;
    color:var(--text-dark, #000);
    line-height:1.15;
}

/* OPTIONAL: kill alternate font classes */
.font-verdana,
.font-geneva {
  font-family: Arial, Helvetica, sans-serif !important;
}

.ftu-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  margin: 8px 0 12px;
}

.ftu-card-desc {
  margin: 0;
  line-height: 1.3;
  font-size: 0.88rem;
  color: #000000;
}


.ftu-card {
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  background: #ffffff;
  overflow: hidden;
}

.ftu-head {
  text-align: center;
}

/* ===== PREMIUM HEADER SYSTEM ===== */

.ftu-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 22px;
  padding: 0 10px;
}

/* TITLE */
.ftu-title {
  margin: 0 0 6px;            /* tighter gap to dots */
  font-size: 24px;            /* upscale feel */
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.05;
}

/* SUBTLE DIVIDER (optional but very “showroom”) */
.ftu-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #e5e5e5;
  margin: 8px auto 10px;
  border-radius: 2px;
}

/* DOTS ROW */
.ftu-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;                  /* tighter spacing */
  margin-top: 2px;
}

/* DOT STYLE */
.ftu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* ACTIVE DOT */
.ftu-dot[aria-selected="true"] {
  background: #FF9900;
  transform: scale(1.2);
}

/* HOVER EFFECT */
.ftu-dot:hover {
  background: #999;
}

/* ===== VIEWPORT + TRACK POLISH ===== */

.ftu-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 6px;          /* subtle breathing room */
}

/* CARD STRIP */
.ftu-track {
  display: flex;
  gap: 18px;                 /* slightly tighter than 20px */
  width: max-content;
  margin: 0 auto;
}

.ftu-header {
  margin-bottom: 8px;
}

.ftu-header .h3-huge-black {
  margin: 0 0 6px;
}

.ftu-track {
  gap: 14px;
  align-items: stretch;
}

.ftu-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}

.ftu-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.ftu-body {
  display: flex;
  flex-direction: column;
  padding: 10px 12px 12px;
  gap: 6px;
  flex: 1;
}

.ftu-card-title {
  margin: 0;
  line-height: 1.15;
  font-size: 1rem;
}

.ftu-btn,
.ftu-body .button-black {
  margin-top: 4px;
  align-self: flex-start;
  padding: 6px 10px;
  line-height: 1.1;
}

/* BUTTON */
.ftu-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 14px;
  background: #FF9933;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}

/* FTU BUTTON LINK COLOR STABILIZATION */
.ftu-btn {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
}

.ftu-btn:visited {
  color: #ffffff;
}

.ftu-btn:hover {
  color: #ffffff;
}

.ftu-btn:active {
  color: #ffffff;
}

.ftu-body {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers everything horizontally */
  text-align: center;  /* keeps text aligned nicely */
}

.ftu-desc {
  text-align: left; /* keeps description readable */
  width: 100%;
}

.ftu-btn {
  margin-top: auto;      /* pushes button toward bottom */
  align-self: center;    /* ensures perfect centering */
}

.ftu-btn,
.ftu-btn:link,
.ftu-btn:visited,
.ftu-btn:hover,
.ftu-btn:active {
  color: #ffffff !important;
  text-decoration: none !important;
}