/* APPLIANCE BANNER */
.appliance-banner { position:relative; height:380px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.appliance-banner .banner-bg { position:absolute; inset:0; }
.appliance-banner .banner-img { width:100%; height:100%; object-fit:cover; object-position:center 40%; display:block; }
.appliance-banner .banner-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.54); }
.appliance-banner .banner-title { position:relative; z-index:2; color:#fff; font-family:var(--font-display); font-size:38px; font-weight:700; letter-spacing:0.02em; text-shadow:0 2px 12px rgba(0,0,0,0.4); }

/* SECTION */
.ap-section { padding:48px 0 64px;}

/* CATEGORY ROW — matches reference exactly */
.ap-category {
  display: flex;
  /*align-items: center;*/
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.ap-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* CATEGORY ICON — matches reference .category-icon */
.ap-cat-icon {
  width: 150px;
  flex-shrink: 0;
  text-align: center;
  padding: 15px;
  background: var(--green-pale);
  border-radius: 5px;
  margin-right: 20px;
}
.ap-cat-icon img {
  width: 55px;
  height: 115px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
  border-radius: 4px;
}
.ap-cat-icon-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* ITEMS ROW — matches reference .items */
.ap-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

/* ITEM — matches reference .item */
.ap-item {
  width: 150px;
  text-align: center;
  text-decoration: none;
  display: block;
}
.ap-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
  display: block;
  transition: border-color 0.2s;
}
.ap-item:hover img {
  border-color: var(--green);
}
.ap-item-label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
  transition: color 0.2s;
}
.ap-item:hover .ap-item-label {
  color: var(--green);
}

/* RESPONSIVE */
@media(max-width:900px){
  .ap-cat-icon { width: 80px; padding: 12px; margin-right: 16px; }
  .ap-cat-icon img { width: 32px; height: 32px; }
  .ap-cat-icon-title { font-size: 14px; }
  .ap-items { gap: 14px; }
  .ap-item { width: 130px; }
}
@media(max-width:768px){
  .ap-section { padding: 32px 0 40px; }
  .appliance-banner { height: 180px; }
  .appliance-banner .banner-title { font-size: 28px; }
  .ap-category { margin-bottom: 24px; padding-bottom: 16px; }
  .ap-cat-icon { width: 70px; padding: 10px; margin-right: 14px; }
  .ap-cat-icon img { width: 28px; height: 28px; margin-bottom: 6px; }
  .ap-cat-icon-title { font-size: 13px; }
  .ap-items { gap: 10px; }
  .ap-item { width: calc(33.33% - 7px); min-width: 90px; }
  .ap-item-label { font-size: 12px; }
  .ap-item img { margin-bottom: 5px; }
}
@media(max-width:480px){
  .appliance-banner { height: 140px; }
  .appliance-banner .banner-title { font-size: 22px; }
  .ap-section { padding: 20px 0 28px; background:#fff; }
  .ap-category { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ap-cat-icon { width: 100%; display:flex; align-items:center; gap:10px; margin-right:0; padding:10px 14px; text-align:left; }
  .ap-cat-icon img { width: 28px; height: 28px; margin:0; flex-shrink:0; }
  .ap-cat-icon-title { font-size: 14px; }
  .ap-items { gap: 8px; }
  .ap-item { width: calc(50% - 4px); min-width: 0; }
}
