*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
  }
  
  body{
    background:#0f0f0f;
    color:#fff;
  }
  
  .collection-page{
    padding:80px 6%;
  }
  
  .page-header{
    max-width:900px;
  }
  
  .page-header h1{
    font-family: 'Playfair Display', serif;
    font-size:34px;
    color:#fff;
  }
  
  .page-header p{
    font-family: 'Poppins', serif;
    margin-top:15px;
    color:#aaa;
    font-size:14px;
  }
  
  .page-content{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:50px;
    margin-top:50px;
  }
  .filters{
    background:#121212;
    padding:25px;
    border-radius:18px;
    border:1px solid #2a2a2a;
  }

  .filters *{
    font-family: 'Poppins', serif;
  }

  .filter-header h3{
    color:#d4af37;
    font-size:15px;
    margin-bottom:20px;
  }
  
  .filter-section{
    margin-bottom:20px;
  }
  
  .filter-section h4{
    font-size:13px;
    color:#fff;
    margin-bottom:12px;
  }
  
  .check-item,
  .radio-item{
    display:flex;
    align-items:center;
    font-size:13px;
    color:#cfcfcf;
    margin-bottom:10px;
    cursor:pointer;
  }
  
  .check-item input,
  .radio-item input{
    appearance:none;
    width:14px;
    height:14px;
    border:1px solid #d4af37;
    margin-right:10px;
    border-radius:3px;
    position:relative;
  }
  
  .radio-item input{
    border-radius:50%;
  }
  
  .check-item input:checked::after,
  .radio-item input:checked::after{
    content:'';
    width:8px;
    height:8px;
    background:#d4af37;
    position:absolute;
    top:2px;
    left:2px;
    border-radius:2px;
  }
  
  .radio-item input:checked::after{
    border-radius:50%;
  }
  
  .divider{
    border-top:1px dashed #2d2d2d;
    margin:20px 0;
  }
  
  /* DIVIDER */
  .title-divider {
    width: 60px;
    height: 2px;
    background: #d4af37;
  	margin: 15px;
  }

  
  .apply-btn{
    width:100%;
    background:#d4af37;
    border:none;
    padding:11px;
    border-radius:8px;
    font-size:13px;
    cursor:pointer;
    margin-top:10px;
  }
  
  .reset-btn{
    width:100%;
    background:transparent;
    border:1px solid #444;
    padding:11px;
    border-radius:8px;
    color:#bbb;
    margin-top:10px;
    cursor:pointer;
  }  
  
  /* GRID */
  .collections-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
  }
  
  .collection-card{
    background:#1b1b1b;
    border-radius:16px;
    overflow:hidden;
    transition:.3s;
  }
  
  .collection-card:hover{
    transform:translateY(-6px);
  }
  
  .collection-card img{
    width:100%;
    height:180px;
    object-fit:cover;
  }
  
  .card-body{
    padding:18px;
  }
  
  .card-body h3{
    font-family: 'Playfair Display', serif;
    font-size:16px;
    margin-bottom:8px;
  }
  
  .card-body p{
    font-family: 'Poppins', serif;
    font-size:13px;
    color:#aaa;
    margin-bottom:15px;
  }
  
  .card-body a{
    font-family: 'Poppins', serif;
    color:#d4af37;
    font-size:13px;
    text-decoration:none;
  }
  
  /* RESPONSIVE */
  @media(max-width:992px){
    .page-content{
      grid-template-columns:1fr;
    }
  }
  