/* CATEGORY BONS PLANS - TRAITEUR ORIENTAL */
/* Couleurs cohérentes: #1e40af, #3b82f6, #f59e0b */

/* Variables CSS */
:root {
  --primary-blue: #1e40af;
  --secondary-blue: #3b82f6;
  --accent-orange: #f59e0b;
  --gold: #fbbf24;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 10px 15px rgba(0, 0, 0, 0.1);
  --gradient-oriental: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue), var(--accent-orange));
  --gradient-gold: linear-gradient(45deg, var(--gold), var(--accent-orange));
}

/* Layout principal */
.main-content {
  padding-top: 40px;
  min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero-deals {
  background: var(--gradient-oriental);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-deals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="oriental" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23oriental)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, white, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-info strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

.stat-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
}

.promo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-gold);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transform: rotate(5deg);
}

.badge-text {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-subtitle {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Sidebar Flottante */
.floating-sidebar {
  position: fixed;
  top: 50%;
  right: -320px;
  transform: translateY(-50%);
  width: 320px;
  background: white;
  border-radius: 15px 0 0 15px;
  box-shadow: var(--shadow-heavy);
  z-index: 1000;
  transition: right 0.4s ease;
  border: 1px solid var(--border-color);
}

.floating-sidebar.active {
  right: 0;
}

.sidebar-toggle {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sidebar-toggle:hover {
  background: var(--secondary-blue);
}

.sidebar-toggle .icon {
  font-size: 1.5rem;
  color: white;
}

.sidebar-content {
  padding: 1.5rem;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-header h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin: 0;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-medium);
  padding: 0;
}

.sidebar-tools {
  margin-bottom: 2rem;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.tool-item:hover {
  background: var(--bg-light);
  transform: translateX(5px);
}

.tool-item .icon {
  font-size: 1.2rem;
}

.quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--bg-light), white);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-medium);
}

/* Filtres */
.deals-filters {
  margin-bottom: 3rem;
}

.filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  background: var(--secondary-blue);
  color: white;
  border-color: var(--secondary-blue);
}

.tab-btn.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.tab-btn .icon {
  font-size: 1.1rem;
}

.search-box {
  display: flex;
  min-width: 300px;
}

.search-box input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 25px 0 0 25px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  border-color: var(--secondary-blue);
}

.search-btn {
  background: var(--secondary-blue);
  border: 1px solid var(--secondary-blue);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: var(--primary-blue);
}

/* Calculateur */
.price-calculator-section {
  margin-bottom: 3rem;
}

.calculator-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.calculator-card h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.calc-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.input-group input,
.input-group select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--secondary-blue);
}

.calc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-gold);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: 0 auto;
}

.calc-btn:hover {
  transform: translateY(-2px);
}

.calc-results {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--bg-light);
}

.result-item.highlight {
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  color: white;
}

.result-item.success {
  background: linear-gradient(135deg, var(--accent-orange), var(--gold));
  color: white;
}

.result-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.result-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

/* Onglets de contenu */
.deals-content {
  margin-bottom: 4rem;
}

.content-tabs {
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.tab-buttons {
  display: flex;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.tab-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border-bottom: 3px solid transparent;
}

.tab-button:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--secondary-blue);
}

.tab-button.active {
  background: white;
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.tab-button .icon {
  font-size: 1.2rem;
}

.tab-content {
  display: none;
  padding: 2.5rem;
}

.tab-content.active {
  display: block;
}

/* Grille des offres */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.deal-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.deal-image {
  position: relative;
  overflow: hidden;
}

.deal-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.deal-card:hover .deal-image img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-medium);
}

.deal-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--primary-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.deal-content {
  padding: 1.5rem;
}

.deal-title {
  margin-bottom: 1rem;
}

.deal-title a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  transition: color 0.3s ease;
}

.deal-title a:hover {
  color: var(--primary-blue);
}

.deal-description {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.deal-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.original-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.sale-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.savings {
  font-size: 0.85rem;
  background: var(--bg-light);
  color: var(--accent-orange);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: 600;
}

.deal-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.deal-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.deal-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.deal-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-oriental);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.deal-btn:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.deal-btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Message no deals */
.no-deals {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-medium);
}

.no-deals-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.no-deals h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Offres saisonnières */
.seasonal-offers {
  text-align: center;
}

.season-header {
  margin-bottom: 3rem;
}

.season-header h3 {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.season-header p {
  color: var(--text-medium);
  font-size: 1.1rem;
}

/* Tableaux responsives */
.offers-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 700px;
}

.responsive-table th,
.responsive-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.responsive-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.responsive-table tbody tr:hover {
  background: var(--bg-light);
}

.price-standard {
  color: var(--text-light);
  text-decoration: line-through;
}

.price-promo {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.1rem;
}

.saving {
  background: var(--gradient-gold);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.order-btn {
  background: var(--secondary-blue);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

/* Forfaits */
.package-deals h3 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: var(--secondary-blue);
  transform: translateY(-5px);
}

.package-card.popular {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-medium);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.package-header {
  margin-bottom: 2rem;
}

.package-header h4 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.package-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.package-price .unit {
  font-size: 1rem;
  color: var(--text-medium);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.package-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--bg-light);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-btn {
  background: var(--gradient-oriental);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Programme fidélité */
.loyalty-program h3 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.loyalty-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tier-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.tier-card.bronze:hover {
  border-color: #cd7f32;
}

.tier-card.silver:hover {
  border-color: #c0c0c0;
}

.tier-card.gold:hover {
  border-color: var(--gold);
}

.tier-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tier-card h4 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tier-requirement {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.tier-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit {
  background: var(--bg-light);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Galerie modale */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 80%;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-light);
}

.modal-header h3 {
  color: var(--primary-blue);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-medium);
  padding: 0;
}

.modal-body {
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem 1rem 1rem;
}

.gallery-overlay h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}

.gallery-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Newsletter */
.newsletter-section {
  margin-bottom: 3rem;
}

.newsletter-card {
  background: var(--gradient-oriental);
  border-radius: 20px;
  padding: 3rem 2rem 2rem;
  text-align: center;
  color: white;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.newsletter-icon {
  font-size: 3rem;
}

.newsletter-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.newsletter-text p {
  margin: 0;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 25px 0 0 25px;
  outline: none;
}

.newsletter-form button {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0 25px 25px 0;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--gold);
}

.newsletter-guarantee {
  opacity: 0.8;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .filters-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .filter-tabs {
    justify-content: center;
  }
  
  .search-box {
    min-width: auto;
    width: 100%;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .tab-button {
    justify-content: flex-start;
    padding-left: 2rem;
  }
  
  .deals-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-row {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .loyalty-tiers {
    grid-template-columns: 1fr;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .floating-sidebar {
    width: 280px;
    right: -280px;
  }
  
  .sidebar-content {
    padding: 1rem;
  }
  
  /* Tables mobiles */
  .responsive-table {
    border: none;
    min-width: auto;
  }
  
  .responsive-table thead {
    display: none;
  }
  
  .responsive-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    background: white;
  }
  
  .responsive-table td {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid var(--bg-light);
  }
  
  .responsive-table td:last-child {
    border-bottom: none;
  }
  
  .responsive-table td::before {
    content: attr(data-label) ":";
    font-weight: 600;
    color: var(--text-dark);
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
  }
  
  .tab-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .deal-details {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .deal-btn {
    text-align: center;
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 25px;
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.deal-card {
  animation: fadeInUp 0.6s ease forwards;
}

.promo-badge {
  animation: pulse 2s infinite;
}

.discount-badge {
  animation: pulse 3s infinite;
}

/* Filtres cachés */
.deal-card.hidden {
  display: none;
}