.vcustom-store-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  padding:clamp(10px,30vw,40px) clamp(15px,3vw,20px) ;
  margin: 15px 0;
  flex-wrap: wrap;
}

.vcustom-store-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vcustom-store-logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
}

.vcustom-store-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vcustom-store-name {
  font-weight: 700;
  margin: 0;
  font-size:24px;
}

.vcustom-store-desc {
  margin: 0;
  font-size: 0.9rem;
  color:#8D8D8D
}

.vcustom-store-meta {
  font-size: 0.9rem;
}

.vcustom-store-meta .fa-star {
  color: #F6C605;
}



.vcustom-store-tags {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vcustom-category-tag {
  background: #F2F2F2;
  color: #000000;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.85rem;
}

.vcustom-location {
  font-size: 0.9rem;
}

.vcustom-visit-btn {
  background: #4C2A71;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.vcustom-visit-btn:hover {
  background: #3b1f59;
}

@media (max-width: 768px) {
  .vcustom-store-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .vcustom-visit-btn {
    align-self: flex-end;
  }
}
.custom-section-container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
 .custom-section-container {
    max-width: 1350px !important;
  }



@media (max-width: 768px) {
  .custom-section-container {
    max-width: 720px;
  }
  
}


@media(max-width:991px) and (min-width:768px){  
    .custom-section-container {
    max-width: 960px;
  }
}
.vcustom-store-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
  font-size: clamp(12px, 1.5vw, 14px);
}

.vcustom-social a {
  color: #000;
  font-size: clamp(14px, 1.8vw, 18px);
  transition: color 0.2s;
}

.vcustom-social a:hover {
  color: #4C2A71;
}
.vcustom-buttons {
  display: flex;
  gap: 10px;
}

.vcustom-follow-btn,
.vcustom-contact-btn {
  border: none;
  border-radius: 20px;
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 4vw, 35px) !important;
  font-size: clamp(12px, 1.5vw, 15px);
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.vcustom-follow-btn {
  background: #F49D33;
  color: #fff;
}

.vcustom-follow-btn:hover {
  background: #e69500;
}

.vcustom-contact-btn {
  background: #4C2A71;
  color: #fff;
}

.vcustom-contact-btn:hover {
  background: #3b1f59;
}
@media (max-width: 992px) {
  .vcustom-store-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .vcustom-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}
.store-publications {
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  padding: clamp(15px, 2vw, 25px);
  margin: clamp(10px, 2vw, 20px) 0;
}

.store-publications-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  margin-bottom: clamp(10px, 2vw, 20px);
}

.store-publications-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(10px, 2vw, 20px);
}

.store-publication-card {
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding:10px 20px;
}

.store-publication-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.store-publication-img {
  /* width: clamp(200px, 40vw, 367px); */
  height: clamp(140px, 20vw, 180px);
  object-fit: cover;
  border-radius:10px;
}

.store-publication-content {
  padding-top:15px ;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.store-publication-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
}

.store-publication-name {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  color: #000;
  margin: 0;
}

.store-publication-date {
  font-size: 12px;
  font-weight: 300;
  flex-shrink: 0;
}

.store-publication-desc {
  font-size: clamp(12px, 1.5vw, 14px);
  margin: 0;
}

.store-publications-btn-container {
  display: flex;
  justify-content: center;
  margin-top: clamp(15px, 2vw, 25px);
}

.store-publications-btn {
  background: #4C2A71;
  color: #fff;
  border: none;
  padding: clamp(8px, 1.2vw, 12px) clamp(16px, 2vw, 28px);
  border-radius: 20px;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.store-publications-btn:hover {
  background: #3b1f59;
}
