* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* === Wall-Art Styles === */
#pf-page .kiosk-wall-art {
  padding: 60px 0;
  max-width: 1400px;
  margin: 0 auto;
}

#pf-page .kiosk-wall-art .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

#pf-page .kiosk-wall-art .product-card {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 40px;
  color: inherit;
  width: 100% !important;
  max-width: none !important;
  margin: 0;
}

#pf-page .kiosk-wall-art .product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

#pf-page .kiosk-wall-art .product-card .panel {
  margin-bottom: 0;
  border-radius: 0;
}

#pf-page .kiosk-wall-art .product-card .panel-body {
  padding: 20px;
}

#pf-page .kiosk-wall-art .product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  margin: 0;
}

/* === Collage Styles === */
#pf-page .kiosk-collage {
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}

#pf-page .kiosk-collage .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pf-page .kiosk-collage .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 350px 350px; /* fixed height for each row */
  gap: 30px;
  align-content: center;
  height: calc(100% - 60px); /* subtract header */
}

#pf-page .kiosk-collage .product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eee;
  height: 100%;
  max-height: 450px;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

#pf-page .kiosk-collage .product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  display: block;
}

#pf-page .kiosk-collage .panel {
  margin: 0;
  border-radius: 0;
  border-top: none;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pf-page .kiosk-collage .panel-body {
  padding: 20px;
}

#pf-page .kiosk-collage .panel-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  margin: 0;
}

#pf-page .kiosk-collage .row::before,
#pf-page .kiosk-collage .row::after {
  content: none !important;
  display: none !important;
}

/* === Responsive === */
@media (max-width: 767px) {
  #pf-page .kiosk-collage .row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  #pf-page .kiosk-collage .product-card {
    max-width: 100%;
    height: auto;
  }
}