/* Modern Pricing Cards Styles */
.plan {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

/* Best Deal Badge */
.plan.featured {
  border: 2px solid #8b5cf6;
  position: relative;
}

.plan.featured::before {
  content: 'Best deal - Limited time only';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  z-index: 10;
}

.plan-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1.2;
}

.plan-sub {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #10b981;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  z-index: 5;
}

.discount-badge.orange {
  background: #eab308;
}

.discount-badge.yellow {
  background: #eab308;
  color: #000;
}

.plan-price {
  font-size: 56px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 24px;
}

.plan-price .currency {
  font-size: 28px;
  font-weight: 600;
  color: #6b7280;
}

.plan-price .amount {
  color: #1f2937;
}

.plan-price .period {
  font-size: 20px;
  font-weight: 500;
  color: #6b7280;
}

.plan-price-sub {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 32px;
  font-weight: 500;
}

/* Modern Button Styles */
.theme-btn.--fill-primary {
  background: #1f2937;
  color: white;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  margin: 24px 0;
}

.theme-btn.--fill-primary:hover {
  background: #111827;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.3);
}

/* Featured Plan Button */
.plan.featured .theme-btn.--fill-primary {
  background: #1f2937;
  color: white;
}

.plan.featured .theme-btn.--fill-primary:hover {
  background: #111827;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.4);
}

/* Features Section */
.features-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.5;
}

.feature-item .check-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item.included {
  color: #374151;
}

.feature-item.not-included {
  color: #9ca3af;
}

.feature-item.not-included .check-icon {
  opacity: 0.4;
}

/* Credit Info */
.credit-info {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px;
  margin: 24px 0;
  border: 1px solid #e5e7eb;
}

.credit-info .credit-amount {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.credit-info .credit-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

/* Side Plan Styles */
.side-plan {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.side-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.25);
}

.side-plan::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.side-plan:hover::after {
  transform: rotate(45deg) translate(50%, 50%);
}

.side-plan .title-1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.side-plan:hover .title-1 {
  transform: translateX(5px);
}

.side-plan .title-2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.side-plan:hover .title-2 {
  transform: translateX(5px);
}

.side-plan .para-1 {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.side-plan:hover .para-1 {
  opacity: 1;
}

.side-plan .theme-btn.--fill-primary {
  background: rgb(0, 0, 0);
  color: #0066ff;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-plan .theme-btn.--fill-primary:hover {
  background: rgb(74 71 71 / 90%);
  transform: rotate(90deg);
}

/* Guarantee Section */
.guarantee-section {
    margin: 2rem 0;
}

.guarantee-item {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.guarantee-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.guarantee-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .guarantee-item {
        margin: 0 1rem 0.5rem 1rem !important;
        justify-content: center;
    }
    
    .guarantee-section {
        justify-content: center !important;
    }
}

/* Filter Navigation Styles */
#filter-nav-i .tab {
  background: #f1f5f9;
  border-radius: 25px;
  padding: 12px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #64748b;
  border: 1px solid #e2e8f0;
  margin: 0 4px;
}

#filter-nav-i .tab:hover {
  background: #e2e8f0;
  color: #475569;
}

#filter-nav-i .tab.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#filter-nav-i .tab.active:hover {
  background: #2563eb;
}