/*
Theme Name: WPSHOP Theme
Theme URI:  http://wpshop.net
Author: WPSHOP
Description: wpshop membership plans - monthly, yearly, lifetime
Version: 1.0
Text Domain: wpshop-theme
*/

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
  text-align: center;
}

.plans-container {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
}

.plan {
  flex: 1 1 30%;
  max-width: 300px;
  min-width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.15);
}

.plan-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0073aa;
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 25px 0;
}

ul.features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  width: 100%;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

ul.features li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

ul.features li:last-child {
  border-bottom: none;
}

.btn-signup {
  background-color: #0073aa;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgb(0 115 170 / 0.4);
  transition: background-color 0.3s ease;
}

.btn-signup:hover {
  background-color: #005f8d;
}

@media (max-width: 768px) {
  .plans-container {
    flex-wrap: wrap;
    max-width: 360px;
    flex-direction: column;
    gap: 20px;
  }

  .plan {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: auto;
  }
}

.error-page {
  text-align: center;
  padding: 100px 20px;
  color: #333;
}

.error-page h1 {
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #0073aa;
}

.error-page h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

