/* Start custom CSS for section, class: .elementor-element-d9f75b3 *//* Booknetic Minimal Dark Theme */
.booknetic-minimal-dark {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.hero-dark {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 12px;
  margin-bottom: 40px;
  border: 1px solid #333;
}

.hero-dark h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle-dark {
  font-size: 1.3em;
  color: #b0b0b0;
  margin: 0;
}

/* Features Section */
.features-dark {
  margin-bottom: 50px;
}

.features-dark h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 600;
}

.features-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card-dark {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #333;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card-dark:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 20px;
  display: block;
}

.feature-card-dark h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 600;
}

.feature-card-dark p {
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

/* Endpoints Section */
.endpoints-dark {
  margin-bottom: 50px;
}

.endpoints-dark h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 600;
}

.endpoint-category-dark {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #333;
  margin-bottom: 25px;
}

.endpoint-category-dark h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: 600;
  border-bottom: 2px solid #00d4ff;
  padding-bottom: 10px;
}

.endpoint-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.endpoint-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #252525;
  border-radius: 8px;
  border-left: 4px solid #333;
  transition: all 0.3s ease;
}

.endpoint-item:hover {
  background: #2a2a2a;
  border-left-color: #00d4ff;
}

.method {
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
  min-width: 70px;
  text-align: center;
  color: white;
}

.method.get { background: #00a32a; }
.method.post { background: #007cba; }
.method.put { background: #ffb700; color: #000; }
.method.delete { background: #dc3545; }

.endpoint-item code {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #00d4ff;
  background: #1a1a1a;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #333;
}

.endpoint-desc {
  color: #b0b0b0;
  font-size: 0.9em;
  font-style: italic;
  min-width: 150px;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-dark h1 {
    font-size: 2em;
  }
  
  .features-grid-dark {
    grid-template-columns: 1fr;
  }
  
  .endpoint-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .endpoint-desc {
    text-align: left;
    min-width: auto;
  }
  
  .method {
    align-self: flex-start;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card-dark,
.endpoint-category-dark {
  animation: fadeInUp 0.6s ease-out;
}/* End custom CSS */
/* Start custom CSS *//* Booknetic Product Description Styles */
.booknetic-product-description {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
  margin-bottom: 40px;
}

.hero-section h1 {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: 800;
}

.subtitle {
  font-size: 1.4em;
  opacity: 0.9;
  margin-bottom: 25px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.premium { background: #ffd700; color: #000; }
.badge.api { background: #00d084; color: white; }
.badge.wordpress { background: #0073aa; color: white; }
.badge.support { background: #dc3545; color: white; }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e1e5e9;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #2c3338;
  margin-bottom: 15px;
  font-size: 1.3em;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  border: 2px solid #e1e5e9;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #667eea;
  transform: scale(1.05);
}

.plan-name {
  font-size: 1.5em;
  font-weight: 700;
  color: #2c3338;
  margin-bottom: 15px;
}

.price {
  font-size: 3em;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 25px;
}

.price span {
  font-size: 0.4em;
  color: #6c757d;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f1;
}

.cta-button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button.featured {
  background: #667eea;
  color: white;
}

.cta-button:not(.featured) {
  background: #6c757d;
  color: white;
}

/* Endpoints Table */
.endpoints-table {
  display: grid;
  gap: 30px;
}

.endpoint-category {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
}

.endpoint-category table {
  width: 100%;
  border-collapse: collapse;
}

.endpoint-category td {
  padding: 12px;
  border-bottom: 1px solid #dee2e6;
}

.method {
  padding: 4px 12px;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  font-size: 0.8em;
  text-transform: uppercase;
}

.method.get { background: #28a745; }
.method.post { background: #007cba; }
.method.put { background: #ffc107; color: #000; }
.method.delete { background: #dc3545; }

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2em;
  }
  
  .features-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.pricing-card {
  animation: fadeInUp 0.6s ease-out;
}/* End custom CSS */