﻿/* =========================
   Massivera - FINAL CSS
   ========================= */

/* ---------- GLOBAL ---------- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
}

/* ---------- HEADINGS ---------- */
h1 {
  font-size: 50pt;
  color: #939393;
  font-weight: bold;
  height: 100px;
  text-align: center;
  font-family: Brush Script MT;
}

h2 {
  font-size: 24pt;
  color: #000;
  font-style: oblique;
}

h3 {
  font-size: 24pt;
  color: #000;
  text-align: center;
}

h4 {
  font-size: 18pt;
  text-align: center;
  color: #FFFFFF;
}

h5 {
  font-size: 16pt;
  color: #FFFFFF;
}

p {
  font-size: 18pt;
  color: #000;
}

/* ---------- IMAGES (SAFE DEFAULT) ---------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- TABLE ---------- */
td {
  padding: 100px;
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider img.active {
  opacity: 1;
}

/* ---------- PRODUCT SLIDER ---------- */
.slider-container {
  width: 100%;
  overflow: hidden;
  padding: 10px;
}

/* flex track */
.product-slider {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* PRODUCT TILE (THIS IS THE IMPORTANT FIX) */
.product-slider > a {
  flex: 0 0 calc((100% - 30px) / 4); /* EXACTLY 4 items */
  height: 400px;                    /* ⬅️ BIGGER BOX */
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* PRODUCT IMAGE */
.product-slider > a img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ⬅️ FULL IMAGE, NO CROPPING */
}

/* ---------- MOBILE ---------- */
@media (max-width: 800px) {
  .product-slider > a {
    flex: 0 0 calc((100% - 10px) / 2);
    height: 220px;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: black;
  color: white;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* SOCIAL ICON ROW — LEFT ALIGNED */
.social-row {
  display: flex;
  justify-content: flex-start; /* ⬅️ LEFT */
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-left: 10px;
}

/* SOCIAL ICONS */
.insta-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
