/* ---------- COMMON WIDTH ---------- */
.container-1680 {
    max-width: 1680px;
    margin: auto;
    padding: 0 40px;
  }
  
  /* ---------- HERO ---------- */
  .shop-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: #fafafa;
  }
  
  .shop-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    margin-bottom: 12px;
  }
  
  .shop-hero p {
    font-size: 17px;
    color: #666;
  }
  
  /* ---------- FILTER ---------- */
  .collections-filter {
    display: flex;
    gap: 12px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .collections-filter button {
    padding: 10px 22px;
    border: 1px solid #ddd;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
  }
  
  .collections-filter button.active {
    display: inline-block;
    background: #ff3366;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background .3s ease
  }
  
  /* ---------- GRID ---------- */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
  
  /* ---------- CARD ---------- */
  .product-card {
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
  }
  
  .product-image {
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .product-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex: 1;
  }
  
  /* ---------- PRICE + BUTTON ---------- */
  .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
  }
  
  .price {
    font-size: 18px;
    font-weight: 600;
  }
  
  .btn-view {
    background: #ff3366;
    color: #fff;
    padding: 8px 16px;
    font-size: 13px;
    /* letter-spacing: 1px; */
    text-decoration: none;
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1200px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 991px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 575px) {
    .container-1680 {
      padding: 0 20px;
    }
  
    .products-grid {
      grid-template-columns: 1fr;
    }
  
    .shop-hero h1 {
      font-size: 34px;
    }
  }
  