/* Grid */
.cc-grid {
  display: grid;
  gap: 10px;
}
.cc-cols-1 { grid-template-columns: 1fr; }
.cc-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cc-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cc-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .cc-cols-3, .cc-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cc-cols-2, .cc-cols-3, .cc-cols-4 { grid-template-columns: 1fr; }
}

/* Card */
.cc-card{
  background:#fff;
  border:1px solid #e9e9e9;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(0,0,0,0.03);
  display:flex;
  flex-direction:column;
  min-height: 100%;
}

.cc-media{
  position:relative;
  display:block;
  height:200px;
  background:#f3f3f3;
  overflow:hidden;
}
.cc-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.cc-media-placeholder{
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#f2f2f2,#e9e9e9);
}

.cc-badge{
  position:absolute;
  top:12px;
  padding:3px 5px;
  line-height:1;
  background:#ffffff;
  border:1px solid #E5E5E5;;
  border-radius:6px;
  display:flex;
  align-items:center;
  gap:8px;
  font-family: "Inter", Sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #737373;
}
.cc-badge-left{ left:12px; background:#F59E0B; color: white; border-color: #F59E0B; }
.cc-badge-right{ right:12px; }

.cc-dot{
  width:12px; height:12px;
  border-radius:2px;
  display:inline-block;
}
.cc-dot-orange{ background:#f59e0b; }
.cc-dot-green{ background:#16A34A; }
.cc-dot-yellow{ background:#facc15; }
.cc-dot-red{ background:#DC2626; }

.cc-body{
  padding:20px;
}
.cc-toprow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.cc-mini{
  display:flex;
  align-items:center;
  gap:8px;
  color:#666;
  font-size:12px;
  background-color: #F8F7F4;
  border: 1px solid #E4E4E7;
  height: 20px;
  border-radius: 6px;
  padding: 0 2px;
}
.cc-avatar{
  height: 15px;
  object-fit: cover;
  object-position: center center;
  display:flex;
}
.cc-stars{
  display:inline-flex;
  align-items:center;
}

.cc-star-wrap{
  width:10px;
  height:10px;
  display:inline-flex;
}

.cc-star-ico{
  width:10px;
  height:10px;
  fill:#3d3212;
}

.cc-meta-item span{
  font-family: "Inter", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #737373;
}

.cc-rating{
  display:inline-flex;
  align-items:center;
  padding: 1px 6px;
  font-size:14px;
  color:#333;
  border:1px solid #eee;
  border-radius:999px;
  background:#fff;
}

.cc-rating svg{
    fill: #F59E0B !important;
}

.cc-rating span{
  font-family: "Inter", Sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #000000;
  margin-left: 5px;
}

.cc-star{ color:#f59e0b; }

.cc-title{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:0.3px;
  font-weight:800;
  text-transform:uppercase;
}
.cc-title a{
  /*font-family: "Cubano", Sans-serif;*/
  font-family: Bebas Neue, Sans-Serif;
  /*font-size: 24px;*/
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  text-decoration:none;
}
.cc-desc{
  font-family: "Inter", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #737373;
}

.cc-meta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  color:#555;
  font-size:13px;
}
.cc-meta-item{
  display:flex;
  align-items:center;
  gap:8px;
}
.cc-meta-item svg, .footer-date-icon{
  height: 14px;
  width: 14px;
  fill: #737373;
}

.cc-ico{ opacity:.85; }
.cc-meta-chip span{
  background:#f7f7f7;
  border:1px solid #eee;
  padding:4px 8px;
  border-radius:999px;
  font-size:12px;
}

.cc-footer{
  margin-top:auto;
  border-top:1px solid #eee;
  padding:20px 20px;
}
.cc-date{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  border-top: 1px solid #eee;
  padding: 10px 20px;
  background-color: #FAFAFA;
}
.cc-date-label{ 
  font-family: "Inter", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #737373;
}
.cc-date-pill{
  background-color: #E5E5E5;
  padding:0px 5px;
  font-family: "Inter", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #3D3212;
}

.cc-cta{
  background-color: #DC2626;
  font-family: "Inter", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #DC2626;
  border-radius: 6px 6px 6px 6px;
  padding: 14px 19px 14px 19px;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}
.cc-cta:hover{ 
  background: #3d3212;
  border-color: #3d3212;
  color: #FFFFFF !important;
}

.cc-cta-disabled{
  background:#bdbdbd;
  pointer-events:none;
  cursor:not-allowed;
  filter:none;
}









.cc-explorer {
  position: relative;
}

.cc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cc-cat-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-cat-btn,
.cc-mobile-cat-btn {
  border: 1px solid #ddd;
  background: #f5f5f5;
  color: #3D3212 !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.25s ease;
  font-family: Inter !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  background: white !important;
  border: 1px solid #E5E5E5 !important;
}
.cc-mobile-cat-btn{
    border-color: #F3F4F6 !important;
    background-color: #F3F4F6 !important;
}
.cc-cat-btn:hover{
  background: #DC2626 !important;
  color: #fff !important;
  border-color: #DC2626 !important;
}

.cc-cat-btn.is-active,
.cc-mobile-cat-btn.is-active {
  background: #DC2626 !important;
  color: #fff !important;
  border-color: #DC2626 !important;
}

.cc-toolbar-right {
  display: flex;
  gap: 12px;
  max-width: 460px;
  width: 100%;
  flex-wrap: wrap;
}

.cc-filter-select {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 10px 42px 10px 16px !important;

  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%233D3212' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px 14px !important;

  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  font-size: 14px;
  width: unset !important;
  min-width: 148px;
  color: #3D3212;
  font-family: Inter;
  font-weight: 600;
}

.cc-whatsapp-btn{
  padding: 4px 16px;
  background-color: #15803D !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: white !important;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 32px;
}

.cc-mobile-filter-toggle {
  display: none !important;
}

.cc-filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.cc-mobile-filter-panel {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: -100%;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: bottom 0.35s ease;
  max-height: 85vh;
  overflow: auto;
}

.cc-mobile-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 16px;
  border-bottom: 1px solid #eee;
}

.cc-mobile-filter-head h3 {
  margin: 0;
  font-size: 18px;
  font-family: Inter;
  font-weight: 600 !important;
  line-height: 28px !important;
}

.cc-mobile-filter-close {
  cursor: pointer;
  padding: 0px !important;
  border: 0px !important;
  height: 20px !important;
}
.cc-mobile-filter-close:hover {
  padding: 0px !important;
  border: 0px !important;
  height: 20px !important;   
  background-color: transparent !important;
}

.cc-mobile-filter-body {
  padding: 18px 22px;
}

.cc-filter-group {
  margin-bottom: 22px;
}

.cc-filter-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: Inter;
  color: #364153;
  font-size: 14px !important;
}

.cc-mobile-cat-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-mobile-filter-actions {
  display: flex;
  gap: 12px;
  padding: 18px 22px 24px;
  border-top: 1px solid #eee;
}

.cc-clear-filters,
.cc-apply-filters {
  flex: 1;
  height: 50px;
  border-radius: 8px !important;
  font-size: 16px;
  cursor: pointer;
  font-size: 16px;
  font-family: Inter;
  line-height: 24px;
}

.cc-clear-filters {
  background-color: #fff !important;
  border: 1px solid #D1D5DC !important;
  color: #364153 !important;
}

.cc-apply-filters {
  background-color: #3D3212 !important;
  border: 1px solid #3D3212 !important;
  color: #fff !important;
}

.cc-explorer.filters-open .cc-filter-overlay {
  opacity: 1;
  visibility: visible;
}

.cc-explorer.filters-open .cc-mobile-filter-panel {
  bottom: 0;
}

.cc-explorer.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.cc-load-more-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.cc-load-more-btn{
  border: 1px solid #ddd;
  background: #f5f5f5;
  color: #3D3212 !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.25s ease;
  font-family: Inter !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  background: white !important;
  border: 1px solid #E5E5E5 !important;
}

.cc-load-more-btn:hover{
  background: #DC2626 !important;
  color: #fff !important;
  border-color: #DC2626 !important;
}

@media (max-width: 1024px) {
  .cc-toolbar-desktop {
    display: none;
  }
  
  .cc-mobile-filter-toggle-div{
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    padding: 16px;
    z-index: 9997;
  }

  .cc-mobile-filter-toggle {
    width: 100% !important;
    padding: 20px 0;
    border-radius: 8px !important;
    border: 0;
    border-radius: 16px;
    background-color: #3D3212 !important;
    border-color: #3D3212 !important;
    color: #fff !important;
    font-family: Inter !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    box-shadow: 0 4px -2px rgba(0,0,0,0.10);
    cursor: pointer;
  }

  .cc-filter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.cc-filter-open {
    overflow: hidden;
  }
  
  .cc-filter-group{
      margin-bottom: 15px !important;
  }
  .cc-filter-select{
      width: 100% !important;
  }
}
