/* -----------------------------
   WALK-IN COOLERS PAGE
------------------------------ */

.walkin-hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #fff;
}

/* -----------------------------
   SECTIONS
------------------------------ */

.walkin-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.walkin-section h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid #1e88e5;
  padding-left: 1rem;
}

.walkin-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* -----------------------------
   SPLIT LAYOUT
------------------------------ */

.walkin-section.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* -----------------------------
   FEATURE LISTS
------------------------------ */

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1e88e5;
  font-weight: bold;
}

.feature-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-grid li {
  background: #f6f8fb;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  border-left: 4px solid #1e88e5;
}

/* -----------------------------
   SPEC TABLE
------------------------------ */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.spec-table th,
.spec-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.spec-table th {
  width: 35%;
  background: #f3f5f8;
  font-weight: 600;
}

/* -----------------------------
   IMAGE ROW
------------------------------ */

.walkin-image-row {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.walkin-image-row img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* -----------------------------
   CTA
------------------------------ */

.walkin-cta {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 5rem;
}

.walkin-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.walkin-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* -----------------------------
   BUTTON OVERRIDES
------------------------------ */

.add-to-cart-btn.primary {
  background: #ff9800;
  border: none;
  color: #000;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.add-to-cart-btn.primary.large {
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
}

.add-to-cart-btn.primary:hover {
  background: #1e88e5;
}

/* -----------------------------
   SCROLL ANIMATIONS
------------------------------ */

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Images get a softer effect */
.animate img {
  transform: scale(0.96);
  transition: transform 1s ease-out;
}

.animate.visible img {
  transform: scale(1);
}

/* CTA emphasis */
.walkin-cta.animate {
  transform: translateY(60px);
}

.walkin-cta.animate.visible {
  transform: translateY(0);
}


/* -----------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .walkin-section.split {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}
