:root {
  --bg: #ffffff;
  --ink: #1a1a1a;
  --title-color: #1d3a6b;
  --desc-color: #3a3a3a;
  --muted: #555;
  --border: #e0e0e0;
}
.title-banner{
    padding: 160px 0 60px;
    background-color: #ffca84;
    background: repeating-linear-gradient(-45deg, #fff 0 20px, #eaf1ff 0 40px);
}
section {
    padding: 60px 0 0;
}
.cont-sec{
    max-width: 1024px;
    margin: 0 auto;
}
.cont-sec p{
    margin-top: 15px;
    padding-bottom: 5px;
    line-height: 24px;
}
h3{
    margin-top: 50px;
    font-size: 28px;
    font-weight: 700;
    color:black
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 52px;
  row-gap: 52px;
  /* max-width: 1280px; */
  margin: 0px auto 60px;
}
.product-item * {
    text-align: left;
}
/* Single product item */
.product-item {
  display: flex;
  flex-direction: column;
}

/* Logo + Brand header */
.product-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

/* Logo box - replace SVG with img tag */
.product-logo {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-identity {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.product-brand {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1px;
}

.product-name {
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.97rem;
  line-height: 1.75;
}
.promotion {
    padding-bottom: 60px;
}

@media (max-width: 920px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); column-gap: 36px; row-gap: 40px; }
  body { padding: 44px 28px 64px; }
}

/* Mobile */
@media (max-width: 580px) {
  .product-grid { grid-template-columns: 1fr; row-gap: 32px; }
  body { padding: 36px 20px 56px; }
  .product-logo { width: 54px; height: 54px; }
  .product-name { font-size: 1.25rem; }
  .product-header { padding-bottom: 16px; margin-bottom: 14px; }
}