.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.social-links a {
  color: var(--leaf);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--ink);
}

.store-cta {
  text-align: center;
  padding: 40px 20px;
  background: #e8f0d7;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.store-cta p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.store-cta .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Community enhancements */
.community-cta {
  background: linear-gradient(135deg, #e8f0d7 0%, #d4e8c4 100%);
  border-radius: 20px;
  padding: 25px;
  margin: 20px 0;
  box-shadow: 0 8px 30px rgba(107, 162, 74, 0.15);
  animation: pulse-border 3s infinite ease-in-out;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 8px 30px rgba(107, 162, 74, 0.15); }
  50% { box-shadow: 0 12px 40px rgba(107, 162, 74, 0.25); }
}

.cta-content {
  text-align: center;
  margin-bottom: 20px;
}

.cta-content h3 {
  color: var(--leaf);
  font-size: 20px;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.cta-content p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.community-filters {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #e8e3d5;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted);
}

.filter-btn:hover {
  border-color: #6fa24a;
  color: var(--leaf);
}

.filter-btn.active {
  background: linear-gradient(135deg, #6fa24a 0%, #8bc34a 100%);
  color: white;
  border-color: transparent;
}

#communityCategory {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #e8e3d5;
  font-size: 14px;
  background: white;
  cursor: pointer;
}

.community-posts article {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.community-posts article:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.community-posts article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6fa24a 0%, #8bc34a 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-right: 12px;
}

.community-posts article p {
  margin: 0;
}

.community-posts article p b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.post-category {
  display: inline-block;
  background: rgba(107, 162, 74, 0.1);
  color: var(--leaf);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
}

.post-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e8e3d5;
}

.like-btn, .reply-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.like-btn:hover, .reply-btn:hover {
  color: var(--leaf);
}

.like-btn.liked {
  color: #e74c3c;
}

.replies {
  margin-top: 15px;
  padding-left: 52px;
  border-left: 2px solid #e8e3d5;
}

.reply {
  background: #f8f9f5;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}

.reply span {
  width: 32px;
  height: 32px;
  font-size: 12px;
  background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
}

.reply p b {
  font-size: 14px;
}

.reply-form {
  margin-top: 10px;
  display: none;
}

.reply-form.active {
  display: block;
}

.reply-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #e8e3d5;
  border-radius: 8px;
  font-family: inherit;
  resize: vertical;
  min-height: 60px;
}

.reply-form button {
  margin-top: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #6fa24a 0%, #8bc34a 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* Facebook integration */
.community-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.facebook-group-btn {
  background: linear-gradient(135deg, #1877f2 0%, #42b883 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
  position: relative;
  overflow: hidden;
}

.facebook-group-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.facebook-group-btn:hover::before {
  left: 100%;
}

.facebook-group-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.facebook-group-btn .btn-icon {
  font-size: 24px;
  line-height: 1;
}

.instagram-group-btn {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(131, 58, 180, 0.3);
  position: relative;
  overflow: hidden;
}

.instagram-group-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.instagram-group-btn:hover::before {
  left: 100%;
}

.instagram-group-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
}

.instagram-group-btn .btn-icon {
  font-size: 24px;
  line-height: 1;
}

.whatsapp-community-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.whatsapp-community-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.whatsapp-community-btn:hover::before {
  left: 100%;
}

.whatsapp-community-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-community-btn .btn-icon {
  font-size: 24px;
  line-height: 1;
}

.whatsapp-group-btn {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.3);
  position: relative;
  overflow: hidden;
}

.whatsapp-group-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.whatsapp-group-btn:hover::before {
  left: 100%;
}

.whatsapp-group-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.4);
}

.whatsapp-group-btn .btn-icon {
  font-size: 24px;
  line-height: 1;
}

.share-community-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
}

.share-community-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.share-community-btn:hover::before {
  left: 100%;
}

.share-community-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.share-community-btn .btn-icon {
  font-size: 24px;
  line-height: 1;
}

.share-fb-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.share-fb-btn:hover {
  color: #1877f2;
}

.share-ig-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.share-ig-btn:hover {
  color: #e1306c;
}

.share-wa-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.share-wa-btn:hover {
  color: #25D366;
}
