/* ───────────  GLOBAL  ─────────── */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}
  
  /* optional page title inside a hero / header */
header {
    text-align: center;
    padding: 60px 20px 20px 20px;
    font-size: 2rem;
    font-weight: 600;
}
  
  /* controls bar (filters, sort-by, view-switch) */
.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px 20px;
    flex-wrap: wrap;
}
  
.filter-sort,
.view-options {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: #555;
}
  
.filter { opacity: 0.3; }
  
.filter-sort select {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
  
  /* ───────────  RESPONSIVE GRID  ─────────── */
.gallery {
    /* 4-up on desktop, 2-up on tablet, 1-up on mobile */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr)); /* min px show grid on page, and how many images shown in a row */
    gap: 48px 32px;             /* vertical | horizontal gap */
    padding: 0 2rem 4rem;
    justify-items: center;      /* center each column */
}
  
  /* tighten gaps on medium screens */
@media (max-width: 768px) {
    .gallery { gap: 32px 20px; }
}
  
  /* single-column stack on very small screens */
@media (max-width: 480px) {
    .gallery { 
      grid-template-columns: 1fr;
      gap: 28px 0;
    }
}
  
  /* ───────────  ITEM CARD  ─────────── */
.art-item {
    display: flex;          /* vertical stack */
    flex-direction: column;
    align-items: center;
    text-align: center;
}
  
.art-item img {
    width: 100%;
    aspect-ratio: 3 / 4;     /* keeps frames uniform */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
}
.art-item img:hover { 
    transform: scale(1.04);
}
  
.title {
    margin-top: 10px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}
  
.price {
    margin-top: 5px;
    font-size: 0.95rem;
    text-align: center;
}
  
.price del { color: #aaa; margin-left: 5px; }
.discount { color: #d85b5b; }
  
  /* ───────────  OPTIONAL BADGES / TAGS  ─────────── */
.sale-tag {
    background-color: #e5b6ac;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
}
  
  /* ───────────  PAGE HEADING  ─────────── */
.page-heading {
    font-weight: 550;
    font-size: 25px;
    text-align: center;
    margin: 50px 0 20px;
    letter-spacing: 1.5px;
    color: #212b36;
    font-family: 'Gill Sans Nova', sans-serif;
}

.page-subtitle {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: 0.5px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
  
  /* (Optional) wrapper for filter / sort controls beneath heading */
.filter-sort-controls {
    margin-bottom: 30px;
    padding: 0 40px;
}

  /* ───────────  COMMISSION DROPDOWN (if you re-enable)  ─────────── */
.commission {
    margin-top: 10px;
}
.commission select {
    padding: 5px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
