/* Filter */
.goc-filter{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:20px;
}

.goc-filter button{
  border:1px solid #ddd;
  background:#fff;
  padding:6px 14px;
  border-radius:20px;
  cursor:pointer;
  font-size:13px;
}

.goc-filter button.active{
  background:#c9a227;
  color:#fff;
  border-color:#c9a227;
}

/* Grid */
.goc-list{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

/* Card */
.goc-card{
  background:#fff;
  border:1px solid #f0f0f0;
  border-radius:10px;
  padding:16px;
  text-align:center;
}

/* Basic Elements */
.goc-logo{max-height:28px;margin-bottom:6px;}
.goc-store{font-size:14px;font-weight:600;margin-bottom:6px;}

.goc-code-wrap{
  padding:8px;
  margin:8px 0;
  border:1px dashed #ddd;
  border-radius:8px;
}

.goc-code{font-size:15px;}

.goc-copy-btn{
  padding:6px 10px;
  font-size:12px;
  background:#c9a227;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.goc-go-store{
  display:none;
  margin-top:6px;
  font-size:12px;
}

.goc-card.copied .goc-go-store{
  display:inline-block;
}

/* ===============================
   Coupon Details (Premium Look)
================================*/
.goc-details{
  display:none;
  margin-top:10px;
  background:#f9f9f9;
  padding:10px;
  border-radius:8px;
  font-size:12px;
  line-height:1.6;
  text-align:right;
  opacity:0;
  transform:translateY(-5px);
  transition:.3s ease;
}

.goc-card.copied .goc-details{
  display:block;
  opacity:1;
  transform:translateY(0);
}

.goc-details-title{
  font-weight:600;
  margin-bottom:6px;
  font-size:13px;
  color:#333;
}

.goc-expiry{
  margin-top:6px;
  color:#888;
}

/* Responsive */
@media(max-width:1200px){.goc-list{grid-template-columns:repeat(4,1fr);}}
@media(max-width:992px){.goc-list{grid-template-columns:repeat(3,1fr);}}
@media(max-width:600px){.goc-list{grid-template-columns:repeat(2,1fr);}}
