/* ================================
   BCP Signature Collection Styles
   Clean white background + responsive
   ================================ */

/* Page wrapper */
.bcp-sig-wrap{
  background:#fff;
  padding:24px 0;
}

/* Inner max width (keeps single card from stretching full width) */
.bcp-sig-wrap{
  max-width:1200px;
  margin:0 auto;
  padding-left:16px;
  padding-right:16px;
}

/* ================================
   Filters
   ================================ */
.bcp-sig-filters{
  background:#fff;
  padding:18px;
  border-radius:14px;
  border:1px solid #eee;
  box-shadow:0 2px 12px rgba(0,0,0,0.05);
  margin-bottom:24px;
}

.bcp-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:flex-end;
}

.bcp-col{
  flex:1;
  min-width:170px;
}

.bcp-col label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:#111;
  margin-bottom:6px;
}

.bcp-col select{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#fff;
  font-size:14px;
  outline:none;
}

.bcp-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.bcp-actions button{
  background:#111;
  color:#fff;
  border:none;
  padding:11px 16px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
  font-size:14px;
}

.bcp-reset{
  padding:11px 16px;
  border-radius:12px;
  border:1px solid #ddd;
  text-decoration:none;
  color:#111;
  font-weight:600;
  font-size:14px;
}

/* ================================
   Grid (4 items per row on desktop)
   Keeps cards small even if 1 item only
   ================================ */
.bcp-sig-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
  margin-top:18px;

  /* keep grid from stretching too much on very wide screens */
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}

/* If there is only one card, keep it same width like 1/4 */
.bcp-sig-grid > .bcp-sig-card{
  max-width:280px;           /* card stays compact */
}

/* Center grid items if fewer than 4 in a row */
.bcp-sig-grid{
  justify-content:start;
}
@supports (justify-items: start){
  .bcp-sig-grid{
    justify-items:start;     /* keeps left aligned */
  }
}

/* Card */
.bcp-sig-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:14px;
  transition:transform .25s ease, box-shadow .25s ease;
}

.bcp-sig-card:hover{
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  transform:translateY(-4px);
}

/* Image */
.bcp-sig-img{
  border-radius:12px;
  overflow:hidden;
  background:#f6f6f6;
}

.bcp-sig-img img{
  width:100%;
  height:170px;             /* controlled height */
  object-fit:cover;
  display:block;
}

/* Heading: dark + bold */
.bcp-sig-card h4{
  font-size:16px;
  line-height:1.25;
  margin:12px 0 6px;
  color:#111;
  font-weight:800;          /* mota */
  letter-spacing:0.2px;
}

/* Description */
.bcp-sig-card p{
  margin:0;
  font-size:13px;
  color:#555;
  min-height:38px;
}

/* Button */
.bcp-sig-btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 14px;
  border-radius:12px;
  background:#111;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  transition:background .2s ease;
}
.bcp-sig-btn:hover{
  background:#000;
}

/* ================================
   Customise section (form below grid)
   ================================ */
.bcp-sig-config{
  margin-top:30px;
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  padding:22px;
  box-shadow:0 6px 24px rgba(0,0,0,0.06);
  max-width:640px;
}

.bcp-sig-config h3{
  margin:0 0 8px;
  color:#111;
  font-weight:800;
  font-size:20px;
}

.bcp-sig-config p{
  color:#555;
  font-size:14px;
  margin-bottom:14px;
}

/* Form fields */
.bcp-sig-config label{
  display:block;
  font-weight:700;
  color:#111;
  margin-bottom:6px;
  font-size:13px;
}

.bcp-sig-config select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  background:#fff;
  font-size:14px;
  outline:none;
}

/* Form button */
.bcp-sig-config button{
  margin-top:12px;
  width:100%;
  background:#111;
  color:#fff;
  border:none;
  padding:14px 16px;
  border-radius:14px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
}
.bcp-sig-config button:hover{
  background:#000;
}

/* ================================
   Responsive
   ================================ */

/* Laptop / small desktop */
@media (max-width:1100px){
  .bcp-sig-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width:900px){
  .bcp-sig-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .bcp-sig-grid > .bcp-sig-card{
    max-width:100%;
  }
}

/* Mobile */
@media (max-width:600px){
  .bcp-row{
    flex-direction:column;
    align-items:stretch;
  }
  .bcp-actions{
    width:100%;
  }
  .bcp-actions button,
  .bcp-reset{
    width:100%;
    text-align:center;
  }

  .bcp-sig-grid{
    grid-template-columns:1fr;
  }
  .bcp-sig-img img{
    height:200px;
  }
  .bcp-sig-config{
    max-width:100%;
  }
}



