/* ============================================================
 * brand.css — AlumiStand brand overrides + new component styles
 * Loaded after style.css.
 * ============================================================ */

/* ---- Brand palette (industrial green) ---- */
:root {
  --blue: #1f8a5b;
  --blue-d: #15663f;
  --navy: #0c241a;
  --navy-2: #143527;
  --green: #1f8a5b;
  --amber: #f2a93a;
}
.brand-mark { color: #ffce4a; }
.brand-accent { color: #5fd6a0 !important; }
.hero-accent { color: #ffce4a; }

/* ---- Instagram wall (home) ---- */
.ig-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-tile {
  aspect-ratio: 1/1; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(135deg, #f3f7f5, #e7efe9); display: flex; align-items: center;
  justify-content: center; color: var(--blue); transition: all .2s;
}
.ig-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--blue-d); }

/* ---- YouTube cards (home) ---- */
.yt-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.yt-card {
  display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-radius: var(--radius);
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); transition: all .2s;
}
.yt-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.yt-play {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.yt-label { font-weight: 600; font-size: 17px; color: var(--navy); }

/* ---- Video gallery ---- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-frame { position: relative; aspect-ratio: 16/9; background: #0c241a; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  aspect-ratio: 16/9; background: linear-gradient(135deg, #0c241a, #1f8a5b); color: #fff;
  text-align: center; padding: 20px; font-weight: 600; transition: all .2s;
}
.video-poster:hover { filter: brightness(1.08); }
.video-poster .yt-play { width: 64px; height: 64px; }
.video-cap { padding: 12px 14px; font-size: 14px; color: var(--ink); font-weight: 600; }

/* ---- OEM list & MOQ table (product detail) ---- */
.oem-list { list-style: none; padding: 0; margin: 0 0 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.oem-list li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14.5px; }
.oem-list li svg { color: var(--blue); flex: 0 0 auto; }
.moq-table { width: 100%; border-collapse: collapse; margin-top: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.moq-table th, .moq-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.moq-table thead th { background: var(--bg-alt); color: var(--navy); font-weight: 700; }
.moq-table tbody tr:last-child td { border-bottom: 0; }
.moq-table td strong { color: var(--blue-d); }

/* ---- OEM / process steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; margin-bottom: 12px; }
.step h4 { font-size: 16px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---- Shipping / payment info boxes ---- */
.info-box, .pay-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-top: 26px; }
.note { color: var(--muted); font-size: 13.5px; margin: 10px 0 0; }
.pay-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pay-col h2 { font-size: 22px; }
.pay-opt { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 12px; }
.pay-opt .pay-name { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); }
.pay-opt p { color: var(--muted); font-size: 14px; margin: 6px 0 0; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.blog-thumb { height: 150px; background: linear-gradient(135deg, #0c241a, #1f8a5b); color: #fff; display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 22px; }
.blog-body h3 { font-size: 18px; }
.blog-body p { color: var(--muted); font-size: 14px; }
.blog-more { color: var(--blue); font-weight: 600; font-size: 14px; }

/* ---- OEM band reuse cta-inner layout ---- */
.oem-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.oem-inner h2 { color: #fff; margin: 0; }
.oem-inner p { color: #d6e2f3; margin: 6px 0 0; }

/* ---- WhatsApp floating button ---- */
#waFloat {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45); transition: transform .2s;
}
#waFloat:hover { transform: scale(1.08); }
#waFloat svg { width: 28px; height: 28px; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .features, .steps, .video-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-wall { grid-template-columns: repeat(3, 1fr); }
  .pay-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .features, .steps, .video-grid, .blog-grid, .cats, .product-grid, .yt-row, .ig-wall { grid-template-columns: 1fr; }
  .oem-list { grid-template-columns: 1fr; }
  #waFloat { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}
