/**
 * TrackTollywood Push - Subscribe Button Styles
 */

.tt-push-subscribe-btn,
#tt-push-subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tt-push-subscribe-btn:hover:not(:disabled),
#tt-push-subscribe-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.tt-push-subscribe-btn:active:not(:disabled),
#tt-push-subscribe-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.tt-push-subscribe-btn:disabled,
#tt-push-subscribe-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.tt-push-subscribe-btn.subscribed,
#tt-push-subscribe-btn.subscribed {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.tt-push-subscribe-btn.blocked,
#tt-push-subscribe-btn.blocked {
  background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
  cursor: not-allowed;
}

/* Widget specific styles */
.tt-push-widget-description {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .tt-push-subscribe-btn,
  #tt-push-subscribe-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
  }
}
