.as_marquee_container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 25px 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}
.as_marquee_container::before,
.as_marquee_container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.as_marquee_container::before {
  left: 0;
  background: linear-gradient(to right, #1a1a2e, transparent);
}
.as_marquee_container::after {
  right: 0;
  background: linear-gradient(to left, #1a1a2e, transparent);
}
.as_marquee_track {
  display: flex;
  width: max-content;
  animation: scrollTicker 35s linear infinite;
}
.as_marquee_container:hover .as_marquee_track {
  animation-play-state: paused;
}
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.as_extreme_card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 18px;
  width: 320px;
  margin: 0 15px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.as_extreme_card:hover {
  transform: translateY(-5px);
  border-color: #ffc107;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}
.as_card_header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.as_ticker_avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ffc107;
  margin-right: 12px;
  background: #fff;
}
.as_ticker_name {
  font-size: 16px;
  font-weight: 700;
  color: #ffc107;
  margin: 0;
}
.as_ticker_date {
  font-size: 12px;
  color: #aaa;
}
.as_ticker_text {
  font-size: 14px;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* मोबाइल और सभी स्क्रीन के लिए सिंगल ब्लॉग इमेज को सही और पूरी दिखाने की CSS */
.as_blog_box .as_blog_img img {
  width: 100%;
  height: auto !important;
  max-height: 450px;
  object-fit: contain !important;
  background: #f9f9f9;
}
.as_product_widget .as_productimg img {
  width: 100px;
  height: 50px;
  object-fit: cover;
}

/* Blank/Abstract User Avatar Styling */
.as_comnt_img img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  background: #f1f1f1;
}

/* Modern Attractive Full-Width Form Styling */
.as_comment_form {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  margin-top: 40px;
}
.as_comment_form .form-control {
  width: 100%;
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 15px 20px;
  height: auto;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.as_comment_form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.as_comment_form .form-control:focus {
  border-color: #ff6e40;
  box-shadow: 0 0 10px rgba(255, 110, 64, 0.15);
  outline: none;
}
.as_comment_form .as_btn {
  padding: 12px 35px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* ========================================== */
/* फालतू स्पेस (अतिरिक्त गैप) को कम करने की CSS सुधार */
/* ========================================== */
.as_blog_detail p {
  margin-bottom: 12px !important;
  line-height: 1.6 !important;
}
.as_blog_detail h2,
.as_blog_detail h3,
.as_blog_detail h4,
.as_blog_detail h5 {
  margin-top: 15px !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
}
.as_blog_detail .as_padderBottom20 {
  padding-bottom: 10px !important;
}
.as_blog_detail .as_padderBottom50 {
  padding-bottom: 20px !important;
}
.as_subheading {
  margin-bottom: 10px !important;
}

/* मोबाइल डिवाइस पर साइडबार को छुपाने और मोबाइल FAQ दिखाने के लिए मीडिया क्वेरी */
@media (max-width: 767px) {
  .as_widget.as_search_widget,
  .as_widget.as_category_widget,
  .as_widget.as_product_widget {
    display: none !important;
  }
  .as_shop_sidebar .as_faq_widget {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile_faq_section {
    display: none !important;
  }
}
