/* google capcha */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* popup modal */
.discount-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.discount-modal-child {
  width: 90%;
  max-width: 500px;
  text-align: center;
}
.modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.modal-content img {
  max-width: 100%;
  width: 100%;
}
.modal-close {
  background-color: #393939;
  color: #b7b7b7;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.modal-close:hover {
  background-color: #393939;
  color: #b7b7b7;
  border: none;
}
.modal-close i {
  font-size: 14px;
}

/* Social Sharing Buttons */
.blog-social-share {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 30px;
}

.blog-social-share h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.social-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: white;
}

.social-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

/* Social media brand colors */
.btn-facebook {
  background-color: #1877f2;
  border-color: #1877f2;
}

.btn-facebook:hover {
  background-color: #166fe5;
  border-color: #166fe5;
}

.btn-twitter {
  background-color: #000000;
  border-color: #000000;
}

.btn-twitter:hover {
  background-color: #333333;
  border-color: #333333;
}

.btn-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border: none;
}

.btn-instagram:hover {
  background: linear-gradient(
    45deg,
    #e08422 0%,
    #d5572b 25%,
    #cb1632 50%,
    #bb1255 75%,
    #ab0777 100%
  );
}

.btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  border-color: #20ba5a;
}

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Semantic markup improvements */
.blog__details-wrap article {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.blog__details-header {
  margin-bottom: 30px;
}

/* Responsive improvements for social buttons */
@media (max-width: 768px) {
  .social-buttons {
    flex-direction: column;
  }

  .social-buttons .btn {
    justify-content: center;
  }
}
