/* ===================================
   OFFER PAGES - STYLES COMMUNS
   Architecture CSS modulaire pour les pages d'offres
   =================================== */

/* Variables spécifiques aux pages d'offres */
:root {
  --offer-primary: #6f64db;
  --offer-secondary: #8b7ee8;
  --offer-accent: #06b6d4;
  --offer-success: #10b981;
  --offer-warning: #f59e0b;
  --offer-danger: #ef4444;
  --offer-light: #f8fafc;
  --offer-dark: #1e293b;
  --offer-border: #e2e8f0;
  --offer-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --offer-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Layout principal des pages d'offres */
.offer-page {
  min-height: 100vh;
  background: white;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.offer-section {
  padding: 4rem 0;
}

.offer-section:first-child {
  padding-top: 2rem;
}

/* Typographie des pages d'offres */
.offer-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--offer-dark);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.offer-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.offer-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--offer-dark);
  text-align: center;
  margin-bottom: 3rem;
}

/* Prix et badges */
.offer-price {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--offer-primary), var(--offer-secondary));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem auto;
  box-shadow: var(--offer-shadow-lg);
}

.offer-badge {
  display: inline-block;
  background: var(--offer-light);
  color: var(--offer-primary);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--offer-border);
}

.offer-badge.popular {
  background: var(--offer-primary);
  color: white;
  border-color: var(--offer-primary);
}

/* Boutons des pages d'offres */
.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.offer-btn-primary {
  background: linear-gradient(135deg, var(--offer-primary), var(--offer-secondary));
  color: white;
  box-shadow: var(--offer-shadow);
}

.offer-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 30px rgba(111, 100, 219, 0.3);
}

.offer-btn-secondary {
  background: white;
  color: var(--offer-primary);
  border: 2px solid var(--offer-primary);
}

.offer-btn-secondary:hover {
  background: var(--offer-primary);
  color: white;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 30px rgba(111, 100, 219, 0.3);
}

/* Navigation breadcrumb */
.offer-breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--offer-border);
}

.offer-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.offer-breadcrumb a {
  color: var(--offer-primary);
  text-decoration: none;
}

.offer-breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .offer-container {
    padding: 0 1rem;
  }
  
  .offer-title {
    font-size: 2rem;
  }
  
  .offer-section-title {
    font-size: 2rem;
  }
  
  .offer-section {
    padding: 2rem 0;
  }
  
  .offer-price {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}