/* Social Share Container */
.social-share-container {
  margin: 15px 0;
  text-align: center;
}

/* Social Share Box */
.social-share-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px 20px;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Social Share Buttons */
.social-share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 140px;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-bottom: 0;
}

/* Social Button Colors */
.facebook-btn {
  background: linear-gradient(135deg, #1877f2 0%, #0d5dbe 100%);
}

.facebook-btn:hover {
  background: linear-gradient(135deg, #0c63d4 0%, #0a4fa0 100%);
}

.twitter-btn {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.twitter-btn:hover {
  background: linear-gradient(135deg, #0d8bd9 0%, #0a75bb 100%);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #1ebd57 100%);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebd57 0%, #18a749 100%);
}

.close-share-btn {
  margin-top: 10px;
  padding: 10px 24px;
  background: transparent;
  color: #C4122F;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  border-color: #C4122F;
}

.share-info {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
}

/* Shareable Card */
.shareable-card-wrapper {
  margin: 20px 0;
  text-align: center;
}

.shareable-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  max-width: 500px;
  margin: 0 auto 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
}

.card-header-bar {
  height: 8px;
  background: #C4122F;
}

.card-logo {
  padding: 30px 20px 20px;
  text-align: center;
  background: #C4122F;
}

.card-logo img {
  max-width: 200px;
  height: auto;
  /* Removed filter to avoid html2canvas issues - use white logo image instead */
}

.card-content {
  padding: 30px 25px;
}

.card-heading {
  font-size: 24px;
  font-weight: 700;
  color: #C4122F;
  margin: 0 0 25px;
  text-align: center;
}

.card-details {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.highlight {
  background: rgba(196, 18, 47, 0.08);
  padding: 16px;
  border-radius: 8px;
  margin: 8px 0;
  border: none;
}

.detail-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.detail-value {
  font-size: 18px;
  color: #333;
  font-weight: 700;
}

.detail-value.big {
  font-size: 32px;
  color: #C4122F;
}

.card-footer-text {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
}

.card-footer-text p {
  margin: 8px 0;
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

.card-footer-text .website {
  color: #C4122F;
  font-weight: 700;
  font-size: 14px;
}

.share-image-btn {
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-share-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .social-btn {
    width: 100%;
    min-width: auto;
  }

  .shareable-card {
    max-width: 100%;
  }

  .card-content {
    padding: 25px 20px;
  }

  .card-heading {
    font-size: 20px;
  }

  .detail-value.big {
    font-size: 28px;
  }
}

