/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: #000000;
  color: var(--aromex-black) !important;
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: #f8f9fa;
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: white;
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: #666;
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue-hover);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.recipe-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

/* Options visuelles */
.visual-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  min-height: 60px;
}

.visual-btn:hover,
.visual-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.visual-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-note {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--aromex-black);
  text-transform: none;
  letter-spacing: normal;
}

.visual-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
}

.visual-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.visual-btn small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
  text-transform: none;
  letter-spacing: normal;
}

/* Actions du configurateur */
.configurator-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-to-cart,
.btn-create-recipe {
  font-family: var(--aromex-font-family-primary);
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid var(--aromex-black);
  min-width: 200px;
}

.btn-add-to-cart {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-add-to-cart:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.btn-create-recipe {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-create-recipe:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-create-recipe:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

/* ===== RESPONSIVE CONFIGURATEUR ===== */
@media (max-width: 768px) {
  .configurator-content {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visual-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .configurator-actions {
    flex-direction: column;
  }

  .size-options {
    justify-content: center;
  }

  .recipe-options {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .products-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-content {
    flex-direction: column;
  }

  .configurator-left,
  .configurator-right {
    width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-category {
    height: 120px;
  }

  .flavor-category img {
    width: 40px;
    height: 40px;
  }

  .flavor-category span {
    font-size: 0.7rem;
  }
}

/* Styles de base pour la modal */
.custom-label-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: none;
}

.custom-label-modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Empêcher le scroll quand la modal est ouverte */
body.modal-open {
  overflow: hidden !important;
  height: 100vh;
}

/* Styles pour la modal d'étiquette personnalisée */
.custom-label-modal .modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
  position: relative;
  width: 90%;
}
/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: #000000;
  color: var(--aromex-black) !important;
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: #f8f9fa;
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: white;
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: #666;
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue-hover);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.recipe-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

/* Options visuelles */
.visual-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  min-height: 60px;
}

.visual-btn:hover,
.visual-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.visual-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-note {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--aromex-black);
  text-transform: none;
  letter-spacing: normal;
}

.visual-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
}

.visual-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.visual-btn small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
  text-transform: none;
  letter-spacing: normal;
}

/* Actions du configurateur */
.configurator-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-to-cart,
.btn-create-recipe {
  font-family: var(--aromex-font-family-primary);
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid var(--aromex-black);
  min-width: 200px;
}

.btn-add-to-cart {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-add-to-cart:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.btn-create-recipe {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-create-recipe:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-create-recipe:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

/* ===== RESPONSIVE CONFIGURATEUR ===== */
@media (max-width: 768px) {
  .configurator-content {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visual-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .configurator-actions {
    flex-direction: column;
  }

  .size-options {
    justify-content: center;
  }

  .recipe-options {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .products-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-content {
    flex-direction: column;
  }

  .configurator-left,
  .configurator-right {
    width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-category {
    height: 120px;
  }

  .flavor-category img {
    width: 40px;
    height: 40px;
  }

  .flavor-category span {
    font-size: 0.7rem;
  }
}

/* Styles pour la modal d'étiquette personnalisée */
.custom-label-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.5);
}

.custom-label-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-label-modal .modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
  position: relative;
  width: 90%;
}

.custom-label-modal .modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
}

.custom-label-modal .modal-content {
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: var(--aromex-font-family-primary);
}

.custom-label-modal .modal-header {
  background-color: var(--aromex-grey-light);
  border-bottom: 2px solid var(--aromex-black);
  padding: 1.5rem;
}

.custom-label-modal .modal-title {
  color: var(--aromex-black);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
}

.custom-label-modal .close {
  font-size: 2rem;
  font-weight: bold;
  color: var(--aromex-black);
  opacity: 0.8;
  background: none;
  border: none;
  padding: 0;
  margin: -1rem -1rem -1rem auto;
}

.custom-label-modal .close:hover {
  opacity: 1;
  color: var(--aromex-blue-hover);
}

.custom-label-modal .modal-body {
  padding: 2rem;
  background-color: var(--aromex-white);
}

.custom-label-modal .form-group {
  margin-bottom: 1.5rem;
}

.custom-label-modal label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--aromex-black);
  font-weight: 500;
  font-size: 0.95rem;
}

.custom-label-modal .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--aromex-grey-light);
  border-radius: 4px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.95rem;
  color: var(--aromex-black);
  background-color: var(--aromex-white);
  transition: border-color 0.3s ease;
}

.custom-label-modal .form-control:focus {
  outline: none;
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 0 0 3px rgba(111, 207, 244, 0.2);
}

.custom-label-modal textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.custom-label-modal .modal-footer {
  background-color: var(--aromex-grey-light);
  border-top: 2px solid var(--aromex-black);
  padding: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.custom-label-modal .btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--aromex-black);
  border-radius: 4px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.custom-label-modal .btn-secondary {
  background-color: var(--aromex-white);
  color: var(--aromex-black);
}

.custom-label-modal .btn-secondary:hover {
  background-color: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.custom-label-modal .btn-primary {
  background-color: var(--aromex-black);
  color: var(--aromex-white);
}

.custom-label-modal .btn-primary:hover {
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.custom-label-modal .btn-primary:active {
  background-color: var(--aromex-blue-hover);
  transform: translateY(1px);
}

/* Overlay de la modal */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Animation d'apparition */
.custom-label-modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform 0.3s ease-out;
}

.custom-label-modal.show .modal-dialog {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-label-modal .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }

  .custom-label-modal .modal-body,
  .custom-label-modal .modal-header,
  .custom-label-modal .modal-footer {
    padding: 1rem;
  }
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px;
}

.header-cell {
  font-weight: bold;
  text-align: center;
  color: #333;
}

.nicotine-rates-content {
  padding: 0;
}

.nicotine-rate-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.nicotine-rate-cell {
  text-align: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
}

.quantity-btn:hover {
  background: #f5f5f5;
}

.quantity-input {
  width: 60px;
  height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.table-footer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #f8f8f8;
  padding: 15px;
  font-weight: bold;
}

.footer-cell {
  text-align: right;
  padding-right: 15px;
}

.total-units {
  text-align: center;
}

.pack-info {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

@media (max-width: 480px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .product-option {
    min-width: 200px;
    padding: 20px 15px;
  }

  .product-image {
    height: 120px;
  }

  .product-size {
    font-size: 1.3rem;
  }
}

/* ===== CRÉATEUR D'ÉTIQUETTES ===== */
.label-creator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.creator-header h2 {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back-to-config {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back-to-config:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.creator-steps {
  width: 100%;
}

/* Indicateur d'étapes */
.step-indicator {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--aromex-black);
  color: var(--aromex-white);
  border-color: var(--aromex-black);
}

.step-item.completed .step-number {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

.step-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--aromex-black);
  transition: color 0.3s ease;
}

.step-item.active .step-title {
  color: var(--aromex-black);
  font-weight: 700;
}

.step-item.completed .step-title {
  color: #666;
}

/* Étapes cliquables pour navigation */
.step-item[style*="cursor: pointer"]:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.step-item[style*="cursor: pointer"]:hover .step-number {
  background-color: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.step-item[style*="cursor: pointer"]:hover .step-title {
  color: var(--aromex-black);
}

/* Contenu des étapes */
.step-content {
  display: none;
  padding: 0;
}

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

.step-content h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Étape 1: Sélection de template */
.template-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.template-option {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.template-option:hover,
.template-option.selected {
  border-color: var(--aromex-black);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-image {
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-preview {
  width: 120px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Thèmes de templates */
.ocean-theme {
  background: linear-gradient(
    135deg,
    #4a90e2 0%,
    var(--aromex-blue-hover) 100%
  );
  color: white;
}

.ocean-theme .label-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ocean-theme .label-company {
  font-size: 0.5rem;
  font-weight: 600;
}

.vintage-theme {
  background: #f5e6d3;
  color: #8b4513;
  padding: 8px;
}

.vintage-theme .label-header {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.vintage-theme .label-icon {
  font-size: 1rem;
  margin: 3px 0;
}

.vintage-theme .label-subtitle,
.vintage-theme .label-contact {
  font-size: 0.35rem;
  margin: 2px 0;
}

.modern-theme {
  background: white;
  color: #333;
  border: 2px solid #4a90e2;
}

.modern-theme .label-logo-big {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 3px;
}

.modern-theme .label-company-name {
  font-size: 0.4rem;
  font-weight: 600;
}

.modern-theme .label-accent {
  width: 30px;
  height: 2px;
  background: #4a90e2;
  margin: 5px auto 0;
}

.template-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.template-size,
.template-price {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.8rem;
  color: #666;
}

.btn-select-template {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-black);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-select-template:hover {
  background: var(--aromex-blue-hover);
}

/* Étape 2: Personnalisation */
.customization-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.live-preview .label-preview {
  width: 280px;
  height: 180px;
  font-size: 1.2rem;
  transform: scale(1.2);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-info h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.preview-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.preview-info li {
  font-family: var(--aromex-font-family-primary);
  padding: 8px 0;
  color: #28a745;
  font-weight: 500;
}

/* Étape 4: Validation panier */
.cart-validation {
  margin-bottom: 30px;
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.summary-preview {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.product-image-summary img {
  width: 160px;
  height: auto;
}

.label-summary {
  width: 100%;
  height: 20%;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
}

/* S'assurer que le contenu cloné garde ses styles dans le résumé aussi */
.label-summary .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.32);
  transform-origin: top left;
}

.label-summary .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-summary .resize-handles {
  display: none !important;
}

.label-summary .canvas-grid {
  display: none !important;
}

.quantity-selection label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.quantity-selection select {
  font-family: var(--aromex-font-family-primary);
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.pricing-summary {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
}

.price-line.total {
  border-top: 2px solid #ddd;
  padding-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Actions des étapes */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-validate {
  font-family: var(--aromex-font-family-primary);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--aromex-black);
  min-width: 150px;
}

.btn-prev {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-prev:hover {
  background: #ddd;
}

.btn-next,
.btn-validate {
  background: var(--aromex-black);
  color: white;
}

.btn-next:hover,
.btn-validate:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

/* Responsive créateur d'étiquettes */
@media (max-width: 768px) {
  .label-creator {
    padding: 20px;
  }

  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .creator-header h2 {
    font-size: 1.5rem;
  }

  .template-selection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customization-workspace,
  .final-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

.customization-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--aromex-black);
}

.form-group input[type="text"] {
  font-family: var(--aromex-font-family-primary);
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.color-picker input[type="color"] {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

/* Upload de logo */
.form-group input[type="file"] {
  font-family: var(--aromex-font-family-primary);
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

.form-group small {
  font-family: var(--aromex-font-family-primary);
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* Amélioration des aperçus de logos */
.label-preview img {
  border-radius: 2px;
}

/* Étape 3: Prévisualisation */
.final-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.label-final-preview {
  width: 280px;
  height: 200px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
  transform: scale(0.75);
}

/* S'assurer que le contenu cloné garde ses styles */
.label-final-preview .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.75);
  transform-origin: top left;
}

.label-final-preview .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-final-preview .resize-handles {
  display: none !important;
}

.label-final-preview .canvas-grid {
  display: none !important;
}

/* ===== ÉDITEUR D'ÉTIQUETTES GÉNÉRIQUE ===== */

.label-editor-workspace {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 30px;
  min-height: 600px;
}

.editor-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas-container {
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  position: sticky;
  top: 55px;
}

.label-canvas {
  width: 370px;
  height: 265px;
  background: white;
  border: 2px solid #333;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.canvas-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.canvas-element {
  position: absolute;
  cursor: move;
  border: 2px solid transparent;
  min-width: 20px;
  min-height: 20px;
  user-select: none;
}

.canvas-element:hover {
  border-color: #007bff;
}

.canvas-element.selected {
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.canvas-element.text-element {
  padding: 2px;
  white-space: nowrap;
}

.canvas-element.image-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canvas-element.shape-element {
  border-radius: 0;
}

/* Poignées de redimensionnement */
.canvas-element.selected::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  cursor: nw-resize;
  z-index: 10;
}

.canvas-element.selected .resize-handles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resize-handle {
  position: absolute;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  pointer-events: all;
  z-index: 10;
}

.resize-handle.top-left {
  top: -4px;
  left: -4px;
  cursor: nw-resize;
}

.resize-handle.top-right {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}

.resize-handle.bottom-left {
  bottom: -4px;
  left: -4px;
  cursor: sw-resize;
}

.resize-handle.bottom-right {
  bottom: -4px;
  right: -4px;
  cursor: se-resize;
}

.resize-handle.top-center {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: n-resize;
}

.resize-handle.bottom-center {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: s-resize;
}

.resize-handle.left-center {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: w-resize;
}

.resize-handle.right-center {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: e-resize;
}

.canvas-info {
  display: flex;
  gap: 20px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  color: #666;
}

/* Outils d'édition */
.editor-tools {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.tools-header h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

.tool-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.tool-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tool-section h5 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: var(--aromex-black);
}

.tool-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-btn {
  font-family: var(--aromex-font-family-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px 10px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tool-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

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

/* Propriétés des éléments */
.property-group {
  margin-bottom: 15px;
}

.property-group label {
  font-family: var(--aromex-font-family-primary);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--aromex-black);
  margin-bottom: 5px;
}

.property-group input[type="text"],
.property-group input[type="number"],
.property-group select {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.property-group input:focus,
.property-group select:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.property-group input[type="range"] {
  width: 70%;
  margin-right: 10px;
}

.property-group input[type="color"] {
  width: 50px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.style-buttons {
  display: flex;
  gap: 5px;
}

.style-btn {
  font-family: var(--aromex-font-family-primary);
  width: 35px;
  height: 35px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.style-btn:hover,
.style-btn.active {
  background: var(--aromex-black);
  color: white;
  border-color: var(--aromex-black);
}

.position-inputs {
  display: flex;
  gap: 10px;
}

.position-inputs input {
  width: 50%;
}

.size-inputs {
  display: flex;
  gap: 10px;
}

.size-inputs input {
  width: 50%;
}

.property-actions {
  margin-top: 15px;
}

.btn-delete-element {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  background: #ff4444;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.btn-delete-element:hover {
  background: #cc0000;
}

/* Responsive éditeur */
@media (max-width: 768px) {
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
  }

  .canvas-container {
    padding: 20px;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero-main-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .products-showcase {
    gap: 50px;
  }

  .flavor-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .hero-main-title {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }

  .products-showcase {
    gap: 40px;
  }

  .configurator-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(1, 1fr);
  }
  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .visual-btn {
    width: 100%;
  }

  .configurator-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    min-width: 100%;
  }
}

/* ===== RESPONSIVE TABLETTE ===== */
@media (max-width: 768px) {
  .aromex-marqueblanch-page {
    padding: 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 50vh;
    padding: 40px 0 60px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin: 8px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-description p {
    font-size: 1rem;
    margin: 8px 0;
  }

  .creation-steps {
    margin: 40px 0;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin: 15px 0;
  }

  .step-text {
    text-align: center;
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* Showcase Produits */
  .products-showcase {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
  }

  .product-option {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 25px 20px;
  }

  .product-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .product-size {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .btn-personalize {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }

  .configurator-header,
  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .btn-back,
  .btn-back-to-config {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .product-preview {
    padding: 20px;
    margin-bottom: 15px;
  }

  .product-description p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .config-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .config-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Options de taille */
  .size-options {
    justify-content: center;
    gap: 8px;
  }

  .size-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 50px;
  }

  /* Options de recette */
  .recipe-options {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .recipe-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .flavor-category {
    padding: 8px 15px;
    height: 120px;
    border-radius: 10px;
  }

  .flavor-category img {
    width: 70px;
    height: 40px;
    margin-bottom: 10px;
  }

  .flavor-category span {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  /* Options visuelles */
  .visual-options {
    gap: 8px;
  }

  .visual-btn {
    padding: 12px;
    min-height: 50px;
  }

  .visual-text {
    font-size: 0.8rem;
  }

  .visual-btn small {
    font-size: 0.65rem;
  }

  .visual-icon {
    font-size: 1.2rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 12px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* Styles pour le formulaire d'étiquette personnalisée */
.custom-label-form {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-label-form h4 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.25rem;
}

.custom-label-form .form-group {
  margin-bottom: 1.5rem;
}

.custom-label-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #495057;
  font-weight: 500;
}

.custom-label-form input[type="text"],
.custom-label-form input[type="email"],
.custom-label-form input[type="tel"],
.custom-label-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.15s ease-in-out;
}

.custom-label-form textarea {
  min-height: 100px;
  resize: vertical;
}

.custom-label-form input:focus,
.custom-label-form textarea:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-label-form .form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.custom-label-form .btn-submit {
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}

.custom-label-form .btn-submit:hover {
  background-color: #0056b3;
}

.custom-label-form .btn-cancel {
  padding: 0.75rem 1.5rem;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}

.custom-label-form .btn-cancel:hover {
  background-color: #5a6268;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 40vh;
    padding: 30px 0 50px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin: 5px 0;
  }

  .hero-main-title {
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    margin: 15px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-description p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .creation-steps {
    margin: 30px 0;
  }

  .step-text {
    font-size: 0.9rem;
  }

  /* Showcase Produits */
  .products-showcase {
    margin: 30px 0;
    gap: 25px;
  }

  .product-option {
    min-width: 250px;
    max-width: 280px;
    padding: 20px 15px;
  }

  .product-image {
    height: 160px;
    margin-bottom: 12px;
  }

  .product-size {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .btn-personalize {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 20px;
    padding: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.3rem;
  }

  .product-preview {
    padding: 15px;
  }

  .config-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .config-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Options de taille */
  .size-options {
    gap: 6px;
  }

  .size-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 45px;
  }

  /* Options de recette */
  .recipe-options {
    gap: 6px;
    margin-bottom: 12px;
  }

  .recipe-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 70px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }

  .flavor-category {
    padding: 6px 10px;
    height: 100px;
    border-radius: 8px;
  }

  .flavor-category img {
    width: 60px;
    height: 35px;
    margin-bottom: 8px;
  }

  .flavor-category span {
    font-size: 0.7rem;
    line-height: 1;
  }

  /* Options visuelles */
  .visual-btn {
    padding: 10px;
    min-height: 45px;
  }

  .visual-text {
    font-size: 0.75rem;
  }

  .visual-btn small {
    font-size: 0.6rem;
  }

  .visual-icon {
    font-size: 1rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* Styles pour le récapitulatif de configuration */
.configuration-summary {
  margin: 30px 0;
  padding: 25px;
  background: var(--aromex-grey-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.configuration-summary h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--aromex-black);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--aromex-font-family-primary);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.summary-section {
  background: var(--aromex-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--aromex-grey-border);
  font-family: var(--aromex-font-family-primary);
}

.summary-section h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--aromex-blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--aromex-grey-border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--aromex-font-family-primary);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--aromex-grey-light);
  font-family: var(--aromex-font-family-primary);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-weight: 600;
  font-size: 16px;
  color: var(--aromex-black);
  border-top: 2px solid var(--aromex-blue);
  padding-top: 12px;
  margin-top: 8px;
  font-family: var(--aromex-font-family-primary);
}

.summary-label {
  font-weight: 500;
  color: var(--aromex-grey-dark);
  flex: 1;
  font-family: var(--aromex-font-family-primary);
}

.summary-value {
  font-weight: 600;
  color: var(--aromex-black);
  text-align: right;
  max-width: 60%;
  word-wrap: break-word;
  font-family: var(--aromex-font-family-primary);
}

.nicotine-details {
  margin-top: 10px;
}

.nicotine-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nicotine-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nicotine-rate-info {
  flex: 1;
}

.nicotine-rate-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nicotine-rate-quantity input[type="number"] {
  width: 60px;
  text-align: center;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nicotine-rate-quantity button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.nicotine-rate-quantity button:hover {
  background-color: #e5e5e5;
}

.nicotine-rate-quantity button:active {
  background-color: #d5d5d5;
}

.nicotine-rate-value {
  font-weight: bold;
  margin-right: 10px;
}

.nicotine-rate-units {
  color: #666;
}

.files-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.file-detail .file-icon {
  font-size: 16px;
  color: var(--aromex-blue);
}

.file-detail .file-name {
  font-weight: 500;
  color: var(--aromex-black);
  flex: 1;
  font-family: var(--aromex-font-family-primary);
}

.file-detail small {
  color: var(--aromex-grey-dark);
  font-style: italic;
  font-family: var(--aromex-font-family-primary);
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .configuration-summary {
    margin: 20px 0;
    padding: 20px;
  }

  .summary-section {
    padding: 15px;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .summary-value {
    max-width: 100%;
    text-align: left;
  }
}

/* ===== RESPONSIVE ÉDITEUR D'ÉTIQUETTES ===== */
@media (max-width: 768px) {
  /* Indicateur d'étapes */
  .step-indicator {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .step-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #ddd;
  }

  .step-item.active {
    background: #e3f2fd;
    border-color: var(--aromex-black);
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .step-title {
    font-size: 0.65rem;
    text-align: left;
    margin: 0;
  }

  /* Contenu des étapes */
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  /* Workspace éditeur */
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .canvas-container {
    padding: 20px;
    margin-bottom: 15px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .canvas-info {
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    text-align: center;
  }

  /* Outils d'édition */
  .editor-tools {
    padding: 15px;
    order: -1;
  }

  .tools-header h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .tool-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .tool-section h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .tool-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tool-btn {
    padding: 12px 8px;
    font-size: 0.7rem;
  }

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

  /* Propriétés des éléments */
  .property-group {
    margin-bottom: 12px;
  }

  .property-group label {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .property-group input,
  .property-group select {
    padding: 6px;
    font-size: 0.8rem;
  }

  .style-buttons {
    gap: 4px;
  }

  .style-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .position-inputs,
  .size-inputs {
    gap: 8px;
  }

  .btn-delete-element {
    padding: 8px;
    font-size: 0.75rem;
  }

  /* Prévisualisation */
  .final-preview,
  .customization-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .preview-container {
    padding: 20px;
    min-height: 250px;
  }

  .label-final-preview {
    width: 210px;
    height: 150px;
    transform: scale(0.6);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.6);
  }

  /* Validation panier */
  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .summary-preview {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .product-image-summary img {
    width: 60px;
  }

  .label-summary {
    width: 90px;
    height: 64px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.24);
  }

  .quantity-selection,
  .pricing-summary {
    width: 100%;
  }

  .pricing-summary {
    padding: 15px;
  }

  .price-line {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .price-line.total {
    font-size: 1rem;
    padding-top: 8px;
    margin-bottom: 15px;
  }

  /* Actions des étapes */
  .step-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ÉDITEUR ===== */
@media (max-width: 480px) {
  .step-item {
    padding: 8px;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .step-title {
    font-size: 0.6rem;
  }

  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .canvas-container {
    padding: 15px;
  }

  .label-canvas {
    width: 210px;
    height: 150px;
  }

  .editor-tools {
    padding: 12px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tool-btn {
    padding: 10px 6px;
    font-size: 0.65rem;
  }

  .tool-icon {
    font-size: 1rem;
  }

  .property-group input,
  .property-group select {
    padding: 5px;
    font-size: 0.75rem;
  }

  .style-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .preview-container {
    padding: 15px;
    min-height: 200px;
  }

  .label-final-preview {
    width: 168px;
    height: 120px;
    transform: scale(0.5);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.5);
  }

  .label-summary {
    width: 72px;
    height: 51px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.2);
  }

  .pricing-summary {
    padding: 12px;
  }

  .price-line {
    font-size: 0.75rem;
  }

  .price-line.total {
    font-size: 0.9rem;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: #000000;
  color: var(--aromex-black) !important;
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: #f8f9fa;
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: white;
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: #666;
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue-hover);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.recipe-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

/* Options visuelles */
.visual-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  min-height: 60px;
}

.visual-btn:hover,
.visual-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.visual-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-note {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--aromex-black);
  text-transform: none;
  letter-spacing: normal;
}

.visual-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
}

.visual-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.visual-btn small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
  text-transform: none;
  letter-spacing: normal;
}

/* Actions du configurateur */
.configurator-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-to-cart,
.btn-create-recipe {
  font-family: var(--aromex-font-family-primary);
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid var(--aromex-black);
  min-width: 200px;
}

.btn-add-to-cart {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-add-to-cart:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.btn-create-recipe {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-create-recipe:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-create-recipe:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

/* ===== RESPONSIVE CONFIGURATEUR ===== */
@media (max-width: 768px) {
  .configurator-content {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visual-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .configurator-actions {
    flex-direction: column;
  }

  .size-options {
    justify-content: center;
  }

  .recipe-options {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .products-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-content {
    flex-direction: column;
  }

  .configurator-left,
  .configurator-right {
    width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-category {
    height: 120px;
  }

  .flavor-category img {
    width: 40px;
    height: 40px;
  }

  .flavor-category span {
    font-size: 0.7rem;
  }
}

.table-footer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #f8f8f8;
  padding: 15px;
  font-weight: bold;
}

.footer-cell {
  text-align: right;
  padding-right: 15px;
}

.total-units {
  text-align: center;
}

.pack-info {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

@media (max-width: 480px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .product-option {
    min-width: 200px;
    padding: 20px 15px;
  }

  .product-image {
    height: 120px;
  }

  .product-size {
    font-size: 1.3rem;
  }
}

/* ===== CRÉATEUR D'ÉTIQUETTES ===== */
.label-creator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.creator-header h2 {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back-to-config {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back-to-config:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.creator-steps {
  width: 100%;
}

/* Indicateur d'étapes */
.step-indicator {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--aromex-black);
  color: var(--aromex-white);
  border-color: var(--aromex-black);
}

.step-item.completed .step-number {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

.step-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--aromex-black);
  transition: color 0.3s ease;
}

.step-item.active .step-title {
  color: var(--aromex-black);
  font-weight: 700;
}

.step-item.completed .step-title {
  color: #666;
}

/* Étapes cliquables pour navigation */
.step-item[style*="cursor: pointer"]:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.step-item[style*="cursor: pointer"]:hover .step-number {
  background-color: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.step-item[style*="cursor: pointer"]:hover .step-title {
  color: var(--aromex-black);
}

/* Contenu des étapes */
.step-content {
  display: none;
  padding: 0;
}

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

.step-content h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Étape 1: Sélection de template */
.template-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.template-option {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.template-option:hover,
.template-option.selected {
  border-color: var(--aromex-black);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-image {
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-preview {
  width: 120px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Thèmes de templates */
.ocean-theme {
  background: linear-gradient(
    135deg,
    #4a90e2 0%,
    var(--aromex-blue-hover) 100%
  );
  color: white;
}

.ocean-theme .label-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ocean-theme .label-company {
  font-size: 0.5rem;
  font-weight: 600;
}

.vintage-theme {
  background: #f5e6d3;
  color: #8b4513;
  padding: 8px;
}

.vintage-theme .label-header {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.vintage-theme .label-icon {
  font-size: 1rem;
  margin: 3px 0;
}

.vintage-theme .label-subtitle,
.vintage-theme .label-contact {
  font-size: 0.35rem;
  margin: 2px 0;
}

.modern-theme {
  background: white;
  color: #333;
  border: 2px solid #4a90e2;
}

.modern-theme .label-logo-big {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 3px;
}

.modern-theme .label-company-name {
  font-size: 0.4rem;
  font-weight: 600;
}

.modern-theme .label-accent {
  width: 30px;
  height: 2px;
  background: #4a90e2;
  margin: 5px auto 0;
}

.template-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.template-size,
.template-price {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.8rem;
  color: #666;
}

.btn-select-template {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-black);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-select-template:hover {
  background: var(--aromex-blue-hover);
}

/* Étape 2: Personnalisation */
.customization-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.live-preview .label-preview {
  width: 280px;
  height: 180px;
  font-size: 1.2rem;
  transform: scale(1.2);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-info h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.preview-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.preview-info li {
  font-family: var(--aromex-font-family-primary);
  padding: 8px 0;
  color: #28a745;
  font-weight: 500;
}

/* Étape 4: Validation panier */
.cart-validation {
  margin-bottom: 30px;
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.summary-preview {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.product-image-summary img {
  width: 160px;
  height: auto;
}

.label-summary {
  width: 100%;
  height: 20%;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
}

/* S'assurer que le contenu cloné garde ses styles dans le résumé aussi */
.label-summary .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.32);
  transform-origin: top left;
}

.label-summary .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-summary .resize-handles {
  display: none !important;
}

.label-summary .canvas-grid {
  display: none !important;
}

.quantity-selection label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.quantity-selection select {
  font-family: var(--aromex-font-family-primary);
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.pricing-summary {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
}

.price-line.total {
  border-top: 2px solid #ddd;
  padding-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Actions des étapes */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-validate {
  font-family: var(--aromex-font-family-primary);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--aromex-black);
  min-width: 150px;
}

.btn-prev {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-prev:hover {
  background: #ddd;
}

.btn-next,
.btn-validate {
  background: var(--aromex-black);
  color: white;
}

.btn-next:hover,
.btn-validate:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

/* Responsive créateur d'étiquettes */
@media (max-width: 768px) {
  .label-creator {
    padding: 20px;
  }

  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .creator-header h2 {
    font-size: 1.5rem;
  }

  .template-selection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customization-workspace,
  .final-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

.customization-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--aromex-black);
}

.form-group input[type="text"] {
  font-family: var(--aromex-font-family-primary);
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.color-picker input[type="color"] {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

/* Upload de logo */
.form-group input[type="file"] {
  font-family: var(--aromex-font-family-primary);
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

.form-group small {
  font-family: var(--aromex-font-family-primary);
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* Amélioration des aperçus de logos */
.label-preview img {
  border-radius: 2px;
}

/* Étape 3: Prévisualisation */
.final-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.label-final-preview {
  width: 280px;
  height: 200px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
  transform: scale(0.75);
}

/* S'assurer que le contenu cloné garde ses styles */
.label-final-preview .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.75);
  transform-origin: top left;
}

.label-final-preview .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-final-preview .resize-handles {
  display: none !important;
}

.label-final-preview .canvas-grid {
  display: none !important;
}

/* ===== ÉDITEUR D'ÉTIQUETTES GÉNÉRIQUE ===== */

.label-editor-workspace {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 30px;
  min-height: 600px;
}

.editor-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas-container {
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  position: sticky;
  top: 55px;
}

.label-canvas {
  width: 370px;
  height: 265px;
  background: white;
  border: 2px solid #333;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.canvas-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.canvas-element {
  position: absolute;
  cursor: move;
  border: 2px solid transparent;
  min-width: 20px;
  min-height: 20px;
  user-select: none;
}

.canvas-element:hover {
  border-color: #007bff;
}

.canvas-element.selected {
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.canvas-element.text-element {
  padding: 2px;
  white-space: nowrap;
}

.canvas-element.image-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canvas-element.shape-element {
  border-radius: 0;
}

/* Poignées de redimensionnement */
.canvas-element.selected::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  cursor: nw-resize;
  z-index: 10;
}

.canvas-element.selected .resize-handles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resize-handle {
  position: absolute;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  pointer-events: all;
  z-index: 10;
}

.resize-handle.top-left {
  top: -4px;
  left: -4px;
  cursor: nw-resize;
}

.resize-handle.top-right {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}

.resize-handle.bottom-left {
  bottom: -4px;
  left: -4px;
  cursor: sw-resize;
}

.resize-handle.bottom-right {
  bottom: -4px;
  right: -4px;
  cursor: se-resize;
}

.resize-handle.top-center {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: n-resize;
}

.resize-handle.bottom-center {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: s-resize;
}

.resize-handle.left-center {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: w-resize;
}

.resize-handle.right-center {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: e-resize;
}

.canvas-info {
  display: flex;
  gap: 20px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  color: #666;
}

/* Outils d'édition */
.editor-tools {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.tools-header h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

.tool-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.tool-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tool-section h5 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: var(--aromex-black);
}

.tool-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-btn {
  font-family: var(--aromex-font-family-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px 10px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tool-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

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

/* Propriétés des éléments */
.property-group {
  margin-bottom: 15px;
}

.property-group label {
  font-family: var(--aromex-font-family-primary);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--aromex-black);
  margin-bottom: 5px;
}

.property-group input[type="text"],
.property-group input[type="number"],
.property-group select {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.property-group input:focus,
.property-group select:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.property-group input[type="range"] {
  width: 70%;
  margin-right: 10px;
}

.property-group input[type="color"] {
  width: 50px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.style-buttons {
  display: flex;
  gap: 5px;
}

.style-btn {
  font-family: var(--aromex-font-family-primary);
  width: 35px;
  height: 35px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.style-btn:hover,
.style-btn.active {
  background: var(--aromex-black);
  color: white;
  border-color: var(--aromex-black);
}

.position-inputs {
  display: flex;
  gap: 10px;
}

.position-inputs input {
  width: 50%;
}

.size-inputs {
  display: flex;
  gap: 10px;
}

.size-inputs input {
  width: 50%;
}

.property-actions {
  margin-top: 15px;
}

.btn-delete-element {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  background: #ff4444;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.btn-delete-element:hover {
  background: #cc0000;
}

/* Responsive éditeur */
@media (max-width: 768px) {
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
  }

  .canvas-container {
    padding: 20px;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero-main-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .products-showcase {
    gap: 50px;
  }

  .flavor-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .hero-main-title {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }

  .products-showcase {
    gap: 40px;
  }

  .configurator-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(1, 1fr);
  }
  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .visual-btn {
    width: 100%;
  }

  .configurator-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    min-width: 100%;
  }
}

/* ===== RESPONSIVE TABLETTE ===== */
@media (max-width: 768px) {
  .aromex-marqueblanch-page {
    padding: 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 50vh;
    padding: 40px 0 60px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin: 8px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-description p {
    font-size: 1rem;
    margin: 8px 0;
  }

  .creation-steps {
    margin: 40px 0;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin: 15px 0;
  }

  .step-text {
    text-align: center;
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* Showcase Produits */
  .products-showcase {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
  }

  .product-option {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 25px 20px;
  }

  .product-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .product-size {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .btn-personalize {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }

  .configurator-header,
  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .btn-back,
  .btn-back-to-config {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .product-preview {
    padding: 20px;
    margin-bottom: 15px;
  }

  .product-description p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .config-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .config-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Options de taille */
  .size-options {
    justify-content: center;
    gap: 8px;
  }

  .size-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 50px;
  }

  /* Options de recette */
  .recipe-options {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .recipe-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .flavor-category {
    padding: 8px 15px;
    height: 120px;
    border-radius: 10px;
  }

  .flavor-category img {
    width: 70px;
    height: 40px;
    margin-bottom: 10px;
  }

  .flavor-category span {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  /* Options visuelles */
  .visual-options {
    gap: 8px;
  }

  .visual-btn {
    padding: 12px;
    min-height: 50px;
  }

  .visual-text {
    font-size: 0.8rem;
  }

  .visual-btn small {
    font-size: 0.65rem;
  }

  .visual-icon {
    font-size: 1.2rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 12px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 40vh;
    padding: 30px 0 50px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin: 5px 0;
  }

  .hero-main-title {
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    margin: 15px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-description p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .creation-steps {
    margin: 30px 0;
  }

  .step-text {
    font-size: 0.9rem;
  }

  /* Showcase Produits */
  .products-showcase {
    margin: 30px 0;
    gap: 25px;
  }

  .product-option {
    min-width: 250px;
    max-width: 280px;
    padding: 20px 15px;
  }

  .product-image {
    height: 160px;
    margin-bottom: 12px;
  }

  .product-size {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .btn-personalize {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 20px;
    padding: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.3rem;
  }

  .product-preview {
    padding: 15px;
  }

  .config-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .config-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Options de taille */
  .size-options {
    gap: 6px;
  }

  .size-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 45px;
  }

  /* Options de recette */
  .recipe-options {
    gap: 6px;
    margin-bottom: 12px;
  }

  .recipe-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 70px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }

  .flavor-category {
    padding: 6px 10px;
    height: 100px;
    border-radius: 8px;
  }

  .flavor-category img {
    width: 60px;
    height: 35px;
    margin-bottom: 8px;
  }

  .flavor-category span {
    font-size: 0.7rem;
    line-height: 1;
  }

  /* Options visuelles */
  .visual-btn {
    padding: 10px;
    min-height: 45px;
  }

  .visual-text {
    font-size: 0.75rem;
  }

  .visual-btn small {
    font-size: 0.6rem;
  }

  .visual-icon {
    font-size: 1rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* Styles pour le récapitulatif de configuration */
.configuration-summary {
  margin: 30px 0;
  padding: 25px;
  background: var(--aromex-grey-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.configuration-summary h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--aromex-black);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--aromex-font-family-primary);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.summary-section {
  background: var(--aromex-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--aromex-grey-border);
  font-family: var(--aromex-font-family-primary);
}

.summary-section h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--aromex-blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--aromex-grey-border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--aromex-font-family-primary);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--aromex-grey-light);
  font-family: var(--aromex-font-family-primary);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-weight: 600;
  font-size: 16px;
  color: var(--aromex-black);
  border-top: 2px solid var(--aromex-blue);
  padding-top: 12px;
  margin-top: 8px;
  font-family: var(--aromex-font-family-primary);
}

.summary-label {
  font-weight: 500;
  color: var(--aromex-grey-dark);
  flex: 1;
  font-family: var(--aromex-font-family-primary);
}

.summary-value {
  font-weight: 600;
  color: var(--aromex-black);
  text-align: right;
  max-width: 60%;
  word-wrap: break-word;
  font-family: var(--aromex-font-family-primary);
}

.nicotine-details {
  margin-top: 10px;
}

.nicotine-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nicotine-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nicotine-rate-info {
  flex: 1;
}

.nicotine-rate-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nicotine-rate-quantity input[type="number"] {
  width: 60px;
  text-align: center;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nicotine-rate-quantity button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.nicotine-rate-quantity button:hover {
  background-color: #e5e5e5;
}

.nicotine-rate-quantity button:active {
  background-color: #d5d5d5;
}

.nicotine-rate-value {
  font-weight: bold;
  margin-right: 10px;
}

.nicotine-rate-units {
  color: #666;
}

.files-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.file-detail .file-icon {
  font-size: 16px;
  color: var(--aromex-blue);
}

.file-detail .file-name {
  font-weight: 500;
  color: var(--aromex-black);
  flex: 1;
  font-family: var(--aromex-font-family-primary);
}

.file-detail small {
  color: var(--aromex-grey-dark);
  font-style: italic;
  font-family: var(--aromex-font-family-primary);
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .configuration-summary {
    margin: 20px 0;
    padding: 20px;
  }

  .summary-section {
    padding: 15px;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .summary-value {
    max-width: 100%;
    text-align: left;
  }
}

/* ===== RESPONSIVE ÉDITEUR D'ÉTIQUETTES ===== */
@media (max-width: 768px) {
  /* Indicateur d'étapes */
  .step-indicator {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .step-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #ddd;
  }

  .step-item.active {
    background: #e3f2fd;
    border-color: var(--aromex-black);
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .step-title {
    font-size: 0.65rem;
    text-align: left;
    margin: 0;
  }

  /* Contenu des étapes */
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  /* Workspace éditeur */
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .canvas-container {
    padding: 20px;
    margin-bottom: 15px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .canvas-info {
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    text-align: center;
  }

  /* Outils d'édition */
  .editor-tools {
    padding: 15px;
    order: -1;
  }

  .tools-header h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .tool-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .tool-section h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .tool-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tool-btn {
    padding: 12px 8px;
    font-size: 0.7rem;
  }

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

  /* Propriétés des éléments */
  .property-group {
    margin-bottom: 12px;
  }

  .property-group label {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .property-group input,
  .property-group select {
    padding: 6px;
    font-size: 0.8rem;
  }

  .style-buttons {
    gap: 4px;
  }

  .style-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .position-inputs,
  .size-inputs {
    gap: 8px;
  }

  .btn-delete-element {
    padding: 8px;
    font-size: 0.75rem;
  }

  /* Prévisualisation */
  .final-preview,
  .customization-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .preview-container {
    padding: 20px;
    min-height: 250px;
  }

  .label-final-preview {
    width: 210px;
    height: 150px;
    transform: scale(0.6);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.6);
  }

  /* Validation panier */
  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .summary-preview {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .product-image-summary img {
    width: 60px;
  }

  .label-summary {
    width: 90px;
    height: 64px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.24);
  }

  .quantity-selection,
  .pricing-summary {
    width: 100%;
  }

  .pricing-summary {
    padding: 15px;
  }

  .price-line {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .price-line.total {
    font-size: 1rem;
    padding-top: 8px;
    margin-bottom: 15px;
  }

  /* Actions des étapes */
  .step-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ÉDITEUR ===== */
@media (max-width: 480px) {
  .step-item {
    padding: 8px;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .step-title {
    font-size: 0.6rem;
  }

  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .canvas-container {
    padding: 15px;
  }

  .label-canvas {
    width: 210px;
    height: 150px;
  }

  .editor-tools {
    padding: 12px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tool-btn {
    padding: 10px 6px;
    font-size: 0.65rem;
  }

  .tool-icon {
    font-size: 1rem;
  }

  .property-group input,
  .property-group select {
    padding: 5px;
    font-size: 0.75rem;
  }

  .style-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .preview-container {
    padding: 15px;
    min-height: 200px;
  }

  .label-final-preview {
    width: 168px;
    height: 120px;
    transform: scale(0.5);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.5);
  }

  .label-summary {
    width: 72px;
    height: 51px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.2);
  }

  .pricing-summary {
    padding: 12px;
  }

  .price-line {
    font-size: 0.75rem;
  }

  .price-line.total {
    font-size: 0.9rem;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE TRÈS PETITS ÉCRANS ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .product-option {
    min-width: 220px;
    max-width: 250px;
    padding: 15px 10px;
  }

  .product-image {
    height: 140px;
  }

  .product-size {
    font-size: 1.1rem;
  }

  .btn-personalize {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .flavor-categories {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flavor-category {
    height: 80px;
    padding: 5px 8px;
  }

  .flavor-category img {
    width: 50px;
    height: 30px;
    margin-bottom: 5px;
  }

  .flavor-category span {
    font-size: 0.65rem;
  }

  .label-canvas {
    width: 180px;
    height: 130px;
  }

  .tool-btn {
    padding: 8px 4px;
    font-size: 0.6rem;
  }

  .label-final-preview {
    width: 140px;
    height: 100px;
    transform: scale(0.4);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.4);
  }
}

/* ===== MESSAGES D'ALERTE ===== */
.alert {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 500;
  border: 2px solid;
  animation: slideInDown 0.5s ease-out;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
}

.alert p {
  margin: 0;
  font-size: 0.95rem;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FORMULAIRE DE DEMANDE DE DEVIS ===== */
.quote-request-form {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  animation: fadeIn 0.5s ease-out;
}

.quote-request-form .form-container {
  padding: 30px;
}

.quote-request-form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.quote-request-form .form-header h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--aromex-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.btn-back-to-config,
.btn-back-from-quote {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  color: var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back-to-config:hover,
.btn-back-from-quote:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.btn-request-quote {
  background: var(--aromex-blue-hover);
  border: 2px solid var(--aromex-blue-hover);
  color: var(--aromex-black);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-request-quote:hover {
  background: var(--aromex-black);
  border-color: var(--aromex-black);
  color: var(--aromex-white);
  transform: translateY(-2px);
}

/* Sections du formulaire */
.form-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--aromex-black);
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--aromex-grey-light);
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
  color: var(--aromex-white);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--aromex-grey-dark);
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
}

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

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
  color: var(--aromex-white);
}

/* Options visuelles */
/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--aromex-black);
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: #666;
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue-hover);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.recipe-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

/* Options visuelles */
.visual-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  min-height: 60px;
}

.visual-btn:hover,
.visual-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.visual-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-note {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--aromex-black);
  text-transform: none;
  letter-spacing: normal;
}

.visual-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
}

.visual-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.visual-btn small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
  text-transform: none;
  letter-spacing: normal;
}

/* Actions du configurateur */
.configurator-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-to-cart,
.btn-create-recipe {
  font-family: var(--aromex-font-family-primary);
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid var(--aromex-black);
  min-width: 200px;
}

.btn-add-to-cart {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-add-to-cart:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.btn-create-recipe {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-create-recipe:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-create-recipe:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

/* ===== RESPONSIVE CONFIGURATEUR ===== */
@media (max-width: 768px) {
  .configurator-content {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visual-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .configurator-actions {
    flex-direction: column;
  }

  .size-options {
    justify-content: center;
  }

  .recipe-options {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .products-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-content {
    flex-direction: column;
  }

  .configurator-left,
  .configurator-right {
    width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-category {
    height: 120px;
  }

  .flavor-category img {
    width: 40px;
    height: 40px;
  }

  .flavor-category span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .product-option {
    min-width: 200px;
    padding: 20px 15px;
  }

  .product-image {
    height: 120px;
  }

  .product-size {
    font-size: 1.3rem;
  }
}

/* ===== CRÉATEUR D'ÉTIQUETTES ===== */
.label-creator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.creator-header h2 {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back-to-config {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back-to-config:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.creator-steps {
  width: 100%;
}

/* Indicateur d'étapes */
.step-indicator {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--aromex-black);
  color: var(--aromex-white);
  border-color: var(--aromex-black);
}

.step-item.completed .step-number {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

.step-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--aromex-black);
  transition: color 0.3s ease;
}

.step-item.active .step-title {
  color: var(--aromex-black);
  font-weight: 700;
}

.step-item.completed .step-title {
  color: #666;
}

/* Étapes cliquables pour navigation */
.step-item[style*="cursor: pointer"]:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.step-item[style*="cursor: pointer"]:hover .step-number {
  background-color: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.step-item[style*="cursor: pointer"]:hover .step-title {
  color: var(--aromex-black);
}

/* Contenu des étapes */
.step-content {
  display: none;
  padding: 0;
}

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

.step-content h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Étape 1: Sélection de template */
.template-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.template-option {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.template-option:hover,
.template-option.selected {
  border-color: var(--aromex-black);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-image {
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-preview {
  width: 120px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Thèmes de templates */
.ocean-theme {
  background: linear-gradient(
    135deg,
    #4a90e2 0%,
    var(--aromex-blue-hover) 100%
  );
  color: white;
}

.ocean-theme .label-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ocean-theme .label-company {
  font-size: 0.5rem;
  font-weight: 600;
}

.vintage-theme {
  background: #f5e6d3;
  color: #8b4513;
  padding: 8px;
}

.vintage-theme .label-header {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.vintage-theme .label-icon {
  font-size: 1rem;
  margin: 3px 0;
}

.vintage-theme .label-subtitle,
.vintage-theme .label-contact {
  font-size: 0.35rem;
  margin: 2px 0;
}

.modern-theme {
  background: white;
  color: #333;
  border: 2px solid #4a90e2;
}

.modern-theme .label-logo-big {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 3px;
}

.modern-theme .label-company-name {
  font-size: 0.4rem;
  font-weight: 600;
}

.modern-theme .label-accent {
  width: 30px;
  height: 2px;
  background: #4a90e2;
  margin: 5px auto 0;
}

.template-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.template-size,
.template-price {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.8rem;
  color: #666;
}

.btn-select-template {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-black);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-select-template:hover {
  background: var(--aromex-blue-hover);
}

/* Étape 2: Personnalisation */
.customization-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.live-preview .label-preview {
  width: 280px;
  height: 180px;
  font-size: 1.2rem;
  transform: scale(1.2);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-info h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.preview-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.preview-info li {
  font-family: var(--aromex-font-family-primary);
  padding: 8px 0;
  color: #28a745;
  font-weight: 500;
}

/* Étape 4: Validation panier */
.cart-validation {
  margin-bottom: 30px;
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.summary-preview {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.product-image-summary img {
  width: 160px;
  height: auto;
}

.label-summary {
  width: 100%;
  height: 20%;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
}

/* S'assurer que le contenu cloné garde ses styles dans le résumé aussi */
.label-summary .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.32);
  transform-origin: top left;
}

.label-summary .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-summary .resize-handles {
  display: none !important;
}

.label-summary .canvas-grid {
  display: none !important;
}

.quantity-selection label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.quantity-selection select {
  font-family: var(--aromex-font-family-primary);
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.pricing-summary {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
}

.price-line.total {
  border-top: 2px solid #ddd;
  padding-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Actions des étapes */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-validate {
  font-family: var(--aromex-font-family-primary);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--aromex-black);
  min-width: 150px;
}

.btn-prev {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-prev:hover {
  background: #ddd;
}

.btn-next,
.btn-validate {
  background: var(--aromex-black);
  color: white;
}

.btn-next:hover,
.btn-validate:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

/* Responsive créateur d'étiquettes */
@media (max-width: 768px) {
  .label-creator {
    padding: 20px;
  }

  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .creator-header h2 {
    font-size: 1.5rem;
  }

  .template-selection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customization-workspace,
  .final-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

.customization-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--aromex-black);
}

.form-group input[type="text"] {
  font-family: var(--aromex-font-family-primary);
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.color-picker input[type="color"] {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

/* Upload de logo */
.form-group input[type="file"] {
  font-family: var(--aromex-font-family-primary);
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

.form-group small {
  font-family: var(--aromex-font-family-primary);
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* Amélioration des aperçus de logos */
.label-preview img {
  border-radius: 2px;
}

/* Étape 3: Prévisualisation */
.final-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.label-final-preview {
  width: 280px;
  height: 200px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
  transform: scale(0.75);
}

/* S'assurer que le contenu cloné garde ses styles */
.label-final-preview .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.75);
  transform-origin: top left;
}

.label-final-preview .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-final-preview .resize-handles {
  display: none !important;
}

.label-final-preview .canvas-grid {
  display: none !important;
}

/* ===== ÉDITEUR D'ÉTIQUETTES GÉNÉRIQUE ===== */

.label-editor-workspace {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 30px;
  min-height: 600px;
}

.editor-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas-container {
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  position: sticky;
  top: 55px;
}

.label-canvas {
  width: 370px;
  height: 265px;
  background: white;
  border: 2px solid #333;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.canvas-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.canvas-element {
  position: absolute;
  cursor: move;
  border: 2px solid transparent;
  min-width: 20px;
  min-height: 20px;
  user-select: none;
}

.canvas-element:hover {
  border-color: #007bff;
}

.canvas-element.selected {
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.canvas-element.text-element {
  padding: 2px;
  white-space: nowrap;
}

.canvas-element.image-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canvas-element.shape-element {
  border-radius: 0;
}

/* Poignées de redimensionnement */
.canvas-element.selected::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  cursor: nw-resize;
  z-index: 10;
}

.canvas-element.selected .resize-handles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resize-handle {
  position: absolute;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  pointer-events: all;
  z-index: 10;
}

.resize-handle.top-left {
  top: -4px;
  left: -4px;
  cursor: nw-resize;
}

.resize-handle.top-right {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}

.resize-handle.bottom-left {
  bottom: -4px;
  left: -4px;
  cursor: sw-resize;
}

.resize-handle.bottom-right {
  bottom: -4px;
  right: -4px;
  cursor: se-resize;
}

.resize-handle.top-center {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: n-resize;
}

.resize-handle.bottom-center {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: s-resize;
}

.resize-handle.left-center {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: w-resize;
}

.resize-handle.right-center {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: e-resize;
}

.canvas-info {
  display: flex;
  gap: 20px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  color: #666;
}

/* Outils d'édition */
.editor-tools {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.tools-header h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

.tool-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.tool-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tool-section h5 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: var(--aromex-black);
}

.tool-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-btn {
  font-family: var(--aromex-font-family-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px 10px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tool-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

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

/* Propriétés des éléments */
.property-group {
  margin-bottom: 15px;
}

.property-group label {
  font-family: var(--aromex-font-family-primary);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--aromex-black);
  margin-bottom: 5px;
}

.property-group input[type="text"],
.property-group input[type="number"],
.property-group select {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.property-group input:focus,
.property-group select:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.property-group input[type="range"] {
  width: 70%;
  margin-right: 10px;
}

.property-group input[type="color"] {
  width: 50px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.style-buttons {
  display: flex;
  gap: 5px;
}

.style-btn {
  font-family: var(--aromex-font-family-primary);
  width: 35px;
  height: 35px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.style-btn:hover,
.style-btn.active {
  background: var(--aromex-black);
  color: white;
  border-color: var(--aromex-black);
}

.position-inputs {
  display: flex;
  gap: 10px;
}

.position-inputs input {
  width: 50%;
}

.size-inputs {
  display: flex;
  gap: 10px;
}

.size-inputs input {
  width: 50%;
}

.property-actions {
  margin-top: 15px;
}

.btn-delete-element {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  background: #ff4444;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.btn-delete-element:hover {
  background: #cc0000;
}

/* Responsive éditeur */
@media (max-width: 768px) {
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
  }

  .canvas-container {
    padding: 20px;
  }
}

/* Styles pour les paliers de remise */
.nicotine-rate-discounts {
  margin-bottom: 20px;
  padding: 15px;
  background: var(--aromex-white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.discount-tiers-title {
  font-weight: 600;
  color: var(--aromex-blue);
  margin-bottom: 12px;
  font-size: 14px;
  border-bottom: 1px solid var(--aromex-grey-light);
  padding-bottom: 8px;
}

.discount-tiers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.discount-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: var(--aromex-grey-light);
  border-radius: 6px;
  border: 1px solid var(--aromex-grey-border);
  transition: all 0.2s ease;
}

.discount-tier.active {
  background: var(--aromex-blue-light);
  border-color: var(--aromex-blue);
}

.tier-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tier-quantity {
  font-weight: 500;
  color: var(--aromex-grey-dark);
}

.tier-discount {
  font-weight: 600;
  color: var(--aromex-blue);
  padding: 2px 8px;
  background: var(--aromex-white);
  border-radius: 4px;
}

.tier-price {
  font-weight: 600;
  color: var(--aromex-black);
}

.tier-active-marker {
  color: var(--aromex-blue);
  font-weight: bold;
  margin-left: 10px;
}

.current-discount,
.current-price {
  text-align: center;
  font-weight: 600;
  padding: 10px;
  border-radius: 6px;
  margin-top: 10px;
}

.current-discount {
  color: var(--aromex-blue);
  background: var(--aromex-blue-light);
}

.current-price {
  color: var(--aromex-grey-dark);
  background: var(--aromex-grey-light);
}

/* Styles pour les paliers de remise dans le récapitulatif de nicotine (identiques aux paliers principaux) */
.nicotine-detail .nicotine-rate-discounts {
  margin: 15px 0 10px 0;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 12px;
  border: 1px solid rgba(var(--aromex-blue-hover-rgb), 0.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  padding: 0;
  width: 100%;
}

.nicotine-detail .nicotine-rate-discounts:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.nicotine-detail .discount-tiers-title {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--aromex-blue-hover);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 6px;
}

.nicotine-detail .discount-tiers-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--aromex-blue-hover);
  border-radius: 1px;
}

.nicotine-detail .discount-tiers-container {
  position: relative;
  height: 60px;
  margin: 0 10px;
  padding: 8px 0;
}

.nicotine-detail .discount-tiers-track {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.nicotine-detail .discount-tiers-progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--aromex-blue-hover),
    var(--aromex-blue)
  );
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nicotine-detail .discount-tiers-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  animation: shimmer 2s infinite linear;
}

.nicotine-detail .discount-tier-marker {
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nicotine-detail .discount-tier-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #9e9e9e;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.nicotine-detail .discount-tier-marker.active .discount-tier-dot {
  border-color: var(--aromex-blue-hover);
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(var(--aromex-blue-hover-rgb), 0.15);
}

.nicotine-detail .discount-tier-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  padding: 4px 8px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 50px;
  opacity: 0.8;
  text-align: center;
}

.nicotine-detail .discount-tier-marker:hover .discount-tier-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-1px);
}

.nicotine-detail .discount-tier-qty {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #666;
  margin-bottom: 1px;
}

.nicotine-detail .discount-tier-discount {
  display: block;
  font-size: 11px;
  color: var(--aromex-blue-hover);
  font-weight: 600;
}

.nicotine-detail .discount-current-marker {
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  z-index: 4;
}

.nicotine-detail .discount-current-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--aromex-blue-hover);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(var(--aromex-blue-hover-rgb), 0.2);
  margin: 0 auto;
  animation: pulse 2s infinite;
}

.nicotine-detail .discount-current-label {
  background: var(--aromex-blue-hover);
  color: white;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
  min-width: 35px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(var(--aromex-blue-hover-rgb), 0.25);
}

.nicotine-detail .discount-tiers-scale {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  color: #666;
  font-size: 10px;
  font-weight: 500;
}

/* Styles pour l'affichage des prix et économies */
.nicotine-detail .current-discount {
  font-size: 12px;
  font-weight: 600;
  color: var(--aromex-blue-hover);
  background: rgba(var(--aromex-blue-hover-rgb), 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid rgba(var(--aromex-blue-hover-rgb), 0.2);
}

.nicotine-detail .price-comparison {
  background: #f8f9fa;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  font-size: 11px;
  line-height: 1.4;
}

.nicotine-detail .price-before {
  color: #6c757d;
  margin-bottom: 4px;
}

.nicotine-detail .price-before .strikethrough {
  text-decoration: line-through;
  color: #dc3545;
}

.nicotine-detail .price-after {
  color: var(--aromex-blue-hover);
  margin-bottom: 6px;
  font-weight: 600;
}

.nicotine-detail .total-savings {
  color: #28a745;
  font-weight: 600;
  padding: 4px 8px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.nicotine-detail .current-price {
  font-size: 11px;
  font-weight: 600;
  color: #495057;
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #dee2e6;
  margin-bottom: 6px;
}

.nicotine-detail .no-discount {
  font-size: 10px;
  color: #6c757d;
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .nicotine-detail .nicotine-rate-discounts {
    padding: 12px;
    margin: 12px 0 8px 0;
  }

  .nicotine-detail .discount-tiers-title {
    font-size: 12px;
    margin-bottom: 12px;
    padding-bottom: 5px;
  }

  .nicotine-detail .discount-tiers-container {
    height: 50px;
    margin: 0 8px;
    padding: 6px 0;
  }

  .nicotine-detail .discount-tier-dot {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .nicotine-detail .discount-current-dot {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .nicotine-detail .discount-tier-label {
    padding: 3px 6px;
    margin-top: 6px;
    min-width: 40px;
  }

  .nicotine-detail .discount-tier-qty,
  .nicotine-detail .discount-tier-discount {
    font-size: 9px;
  }

  .nicotine-detail .discount-current-label {
    font-size: 9px;
    padding: 2px 5px;
    margin-top: 5px;
    min-width: 30px;
  }

  .nicotine-detail .discount-tiers-scale {
    padding: 0 6px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .nicotine-detail .nicotine-rate-discounts {
    padding: 10px;
    margin: 10px 0 6px 0;
  }

  .nicotine-detail .discount-tiers-title {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .nicotine-detail .discount-tiers-container {
    height: 45px;
    margin: 0 6px;
  }

  .nicotine-detail .discount-tier-dot {
    width: 9px;
    height: 9px;
  }

  .nicotine-detail .discount-current-dot {
    width: 12px;
    height: 12px;
  }

  .nicotine-detail .discount-tier-label {
    padding: 2px 4px;
    margin-top: 5px;
    min-width: 35px;
  }

  .nicotine-detail .discount-tier-qty,
  .nicotine-detail .discount-tier-discount {
    font-size: 8px;
  }

  .nicotine-detail .discount-current-label {
    font-size: 8px;
    padding: 2px 4px;
    margin-top: 4px;
    min-width: 25px;
  }

  .nicotine-detail .discount-tiers-scale {
    padding: 0 4px;
    font-size: 8px;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero-main-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .products-showcase {
    gap: 50px;
  }

  .flavor-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .hero-main-title {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }

  .products-showcase {
    gap: 40px;
  }

  .configurator-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(1, 1fr);
  }
  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .visual-btn {
    width: 100%;
  }

  .configurator-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    min-width: 100%;
  }
}

/* ===== RESPONSIVE TABLETTE ===== */
@media (max-width: 768px) {
  .aromex-marqueblanch-page {
    padding: 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 50vh;
    padding: 40px 0 60px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin: 8px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-description p {
    font-size: 1rem;
    margin: 8px 0;
  }

  .creation-steps {
    margin: 40px 0;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin: 15px 0;
  }

  .step-text {
    text-align: center;
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* Showcase Produits */
  .products-showcase {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
  }

  .product-option {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 25px 20px;
  }

  .product-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .product-size {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .btn-personalize {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }

  .configurator-header,
  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .btn-back,
  .btn-back-to-config {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .product-preview {
    padding: 20px;
    margin-bottom: 15px;
  }

  .product-description p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .config-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .config-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Options de taille */
  .size-options {
    justify-content: center;
    gap: 8px;
  }

  .size-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 50px;
  }

  /* Options de recette */
  .recipe-options {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .recipe-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .flavor-category {
    padding: 8px 15px;
    height: 120px;
    border-radius: 10px;
  }

  .flavor-category img {
    width: 70px;
    height: 40px;
    margin-bottom: 10px;
  }

  .flavor-category span {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  /* Options visuelles */
  .visual-options {
    gap: 8px;
  }

  .visual-btn {
    padding: 12px;
    min-height: 50px;
  }

  .visual-text {
    font-size: 0.8rem;
  }

  .visual-btn small {
    font-size: 0.65rem;
  }

  .visual-icon {
    font-size: 1.2rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 12px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 40vh;
    padding: 30px 0 50px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin: 5px 0;
  }

  .hero-main-title {
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    margin: 15px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-description p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .creation-steps {
    margin: 30px 0;
  }

  .step-text {
    font-size: 0.9rem;
  }

  /* Showcase Produits */
  .products-showcase {
    margin: 30px 0;
    gap: 25px;
  }

  .product-option {
    min-width: 250px;
    max-width: 280px;
    padding: 20px 15px;
  }

  .product-image {
    height: 160px;
    margin-bottom: 12px;
  }

  .product-size {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .btn-personalize {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 20px;
    padding: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.3rem;
  }

  .product-preview {
    padding: 15px;
  }

  .config-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .config-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Options de taille */
  .size-options {
    gap: 6px;
  }

  .size-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 45px;
  }

  /* Options de recette */
  .recipe-options {
    gap: 6px;
    margin-bottom: 12px;
  }

  .recipe-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 70px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }

  .flavor-category {
    padding: 6px 10px;
    height: 100px;
    border-radius: 8px;
  }

  .flavor-category img {
    width: 60px;
    height: 35px;
    margin-bottom: 8px;
  }

  .flavor-category span {
    font-size: 0.7rem;
    line-height: 1;
  }

  /* Options visuelles */
  .visual-btn {
    padding: 10px;
    min-height: 45px;
  }

  .visual-text {
    font-size: 0.75rem;
  }

  .visual-btn small {
    font-size: 0.6rem;
  }

  .visual-icon {
    font-size: 1rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* Styles pour le récapitulatif de configuration */
.configuration-summary {
  margin: 30px 0;
  padding: 25px;
  background: var(--aromex-grey-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.configuration-summary h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--aromex-black);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--aromex-font-family-primary);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.summary-section {
  background: var(--aromex-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--aromex-grey-border);
  font-family: var(--aromex-font-family-primary);
}

.summary-section h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--aromex-blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--aromex-grey-border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--aromex-font-family-primary);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--aromex-grey-light);
  font-family: var(--aromex-font-family-primary);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-weight: 600;
  font-size: 16px;
  color: var(--aromex-black);
  border-top: 2px solid var(--aromex-blue);
  padding-top: 12px;
  margin-top: 8px;
  font-family: var(--aromex-font-family-primary);
}

.summary-label {
  font-weight: 500;
  color: var(--aromex-grey-dark);
  flex: 1;
  font-family: var(--aromex-font-family-primary);
}

.summary-value {
  font-weight: 600;
  color: var(--aromex-black);
  text-align: right;
  max-width: 60%;
  word-wrap: break-word;
  font-family: var(--aromex-font-family-primary);
}

.nicotine-details {
  margin-top: 10px;
}

.nicotine-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nicotine-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  background: var(--aromex-blue-light);
  border-radius: 6px;
  border-left: 3px solid var(--aromex-blue);
  font-family: var(--aromex-font-family-primary);
}

.nicotine-detail .nicotine-rate {
  font-weight: 600;
  color: var(--aromex-blue);
  font-family: var(--aromex-font-family-primary);
}

.nicotine-detail .nicotine-qty {
  color: var(--aromex-grey-dark);
  font-size: 14px;
  font-family: var(--aromex-font-family-primary);
}

.files-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.file-detail .file-icon {
  font-size: 16px;
}

.file-detail .file-name {
  font-weight: 500;
  color: #2c3e50;
  flex: 1;
}

.file-detail small {
  color: #666;
  font-style: italic;
}

.nicotine-rates-summary {
  width: 100%;
  margin-top: 10px;
}

.nicotine-rate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  margin-bottom: 8px;
  background: var(--aromex-blue-light);
  border-radius: 6px;
  border-left: 3px solid var(--aromex-blue);
}

.nicotine-rate-info {
  display: flex;
  flex-direction: column;
}

.nicotine-rate-value {
  font-weight: 600;
  color: var(--aromex-blue);
}

.nicotine-rate-units {
  font-size: 12px;
  color: var(--aromex-grey-dark);
}

.nicotine-rate-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nicotine-rate-quantity button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--aromex-blue);
  background: var(--aromex-white);
  color: var(--aromex-blue);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
  transition: all 0.2s ease;
}

.nicotine-rate-quantity button:hover {
  background: var(--aromex-blue);
  color: var(--aromex-white);
}

.nicotine-rate-quantity input {
  width: 50px;
  height: 24px;
  text-align: center;
  border: 1px solid var(--aromex-grey-border);
  border-radius: 4px;
  font-size: 14px;
  padding: 0 4px;
}

.nicotine-rate-quantity input:focus {
  outline: none;
  border-color: var(--aromex-blue);
}

@media (max-width: 768px) {
  .nicotine-rate-item {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .nicotine-rate-quantity {
    width: 100%;
    justify-content: space-between;
  }

  .nicotine-rate-quantity input {
    flex: 1;
    max-width: 100px;
  }
}

/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: #000000;
  color: var(--aromex-black) !important;
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: #f8f9fa;
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: white;
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: #666;
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue-hover);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.recipe-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

/* Options visuelles */
.visual-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  min-height: 60px;
}

.visual-btn:hover,
.visual-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.visual-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-note {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--aromex-black);
  text-transform: none;
  letter-spacing: normal;
}

.visual-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
}

.visual-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.visual-btn small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
  text-transform: none;
  letter-spacing: normal;
}

/* Actions du configurateur */
.configurator-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-to-cart,
.btn-create-recipe {
  font-family: var(--aromex-font-family-primary);
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid var(--aromex-black);
  width: 100%;
}

.btn-add-to-cart {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-add-to-cart:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.btn-create-recipe {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-create-recipe:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-create-recipe:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

/* ===== RESPONSIVE CONFIGURATEUR ===== */
@media (max-width: 768px) {
  .configurator-content {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visual-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .configurator-actions {
    flex-direction: column;
  }

  .size-options {
    justify-content: center;
  }

  .recipe-options {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .products-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-content {
    flex-direction: column;
  }

  .configurator-left,
  .configurator-right {
    width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-category {
    height: 120px;
  }

  .flavor-category img {
    width: 40px;
    height: 40px;
  }

  .flavor-category span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .product-option {
    min-width: 200px;
    padding: 20px 15px;
  }

  .product-image {
    height: 120px;
  }

  .product-size {
    font-size: 1.3rem;
  }
}

/* ===== CRÉATEUR D'ÉTIQUETTES ===== */
.label-creator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.creator-header h2 {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back-to-config {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back-to-config:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.creator-steps {
  width: 100%;
}

/* Indicateur d'étapes */
.step-indicator {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--aromex-black);
  color: var(--aromex-white);
  border-color: var(--aromex-black);
}

.step-item.completed .step-number {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

.step-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--aromex-black);
  transition: color 0.3s ease;
}

.step-item.active .step-title {
  color: var(--aromex-black);
  font-weight: 700;
}

.step-item.completed .step-title {
  color: #666;
}

/* Étapes cliquables pour navigation */
.step-item[style*="cursor: pointer"]:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.step-item[style*="cursor: pointer"]:hover .step-number {
  background-color: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.step-item[style*="cursor: pointer"]:hover .step-title {
  color: var(--aromex-black);
}

/* Contenu des étapes */
.step-content {
  display: none;
  padding: 0;
}

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

.step-content h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Étape 1: Sélection de template */
.template-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.template-option {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.template-option:hover,
.template-option.selected {
  border-color: var(--aromex-black);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-image {
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-preview {
  width: 120px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Thèmes de templates */
.ocean-theme {
  background: linear-gradient(
    135deg,
    #4a90e2 0%,
    var(--aromex-blue-hover) 100%
  );
  color: white;
}

.ocean-theme .label-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ocean-theme .label-company {
  font-size: 0.5rem;
  font-weight: 600;
}

.vintage-theme {
  background: #f5e6d3;
  color: #8b4513;
  padding: 8px;
}

.vintage-theme .label-header {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.vintage-theme .label-icon {
  font-size: 1rem;
  margin: 3px 0;
}

.vintage-theme .label-subtitle,
.vintage-theme .label-contact {
  font-size: 0.35rem;
  margin: 2px 0;
}

.modern-theme {
  background: white;
  color: #333;
  border: 2px solid #4a90e2;
}

.modern-theme .label-logo-big {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 3px;
}

.modern-theme .label-company-name {
  font-size: 0.4rem;
  font-weight: 600;
}

.modern-theme .label-accent {
  width: 30px;
  height: 2px;
  background: #4a90e2;
  margin: 5px auto 0;
}

.template-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.template-size,
.template-price {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.8rem;
  color: #666;
}

.btn-select-template {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-black);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-select-template:hover {
  background: var(--aromex-blue-hover);
}

/* Étape 2: Personnalisation */
.customization-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.live-preview .label-preview {
  width: 280px;
  height: 180px;
  font-size: 1.2rem;
  transform: scale(1.2);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-info h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.preview-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.preview-info li {
  font-family: var(--aromex-font-family-primary);
  padding: 8px 0;
  color: #28a745;
  font-weight: 500;
}

/* Étape 4: Validation panier */
.cart-validation {
  margin-bottom: 30px;
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.summary-preview {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.product-image-summary img {
  width: 160px;
  height: auto;
}

.label-summary {
  width: 100%;
  height: 20%;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
}

/* S'assurer que le contenu cloné garde ses styles dans le résumé aussi */
.label-summary .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.32);
  transform-origin: top left;
}

.label-summary .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-summary .resize-handles {
  display: none !important;
}

.label-summary .canvas-grid {
  display: none !important;
}

.quantity-selection label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.quantity-selection select {
  font-family: var(--aromex-font-family-primary);
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.pricing-summary {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
}

.price-line.total {
  border-top: 2px solid #ddd;
  padding-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Actions des étapes */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-validate {
  font-family: var(--aromex-font-family-primary);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--aromex-black);
  min-width: 150px;
}

.btn-prev {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-prev:hover {
  background: #ddd;
}

.btn-next,
.btn-validate {
  background: var(--aromex-black);
  color: white;
}

.btn-next:hover,
.btn-validate:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

/* Responsive créateur d'étiquettes */
@media (max-width: 768px) {
  .label-creator {
    padding: 20px;
  }

  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .creator-header h2 {
    font-size: 1.5rem;
  }

  .template-selection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customization-workspace,
  .final-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

.customization-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--aromex-black);
}

.form-group input[type="text"] {
  font-family: var(--aromex-font-family-primary);
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.color-picker input[type="color"] {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

/* Upload de logo */
.form-group input[type="file"] {
  font-family: var(--aromex-font-family-primary);
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

.form-group small {
  font-family: var(--aromex-font-family-primary);
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* Amélioration des aperçus de logos */
.label-preview img {
  border-radius: 2px;
}

/* Étape 3: Prévisualisation */
.final-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.label-final-preview {
  width: 280px;
  height: 200px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
  transform: scale(0.75);
}

/* S'assurer que le contenu cloné garde ses styles */
.label-final-preview .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.75);
  transform-origin: top left;
}

.label-final-preview .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-final-preview .resize-handles {
  display: none !important;
}

.label-final-preview .canvas-grid {
  display: none !important;
}

/* ===== ÉDITEUR D'ÉTIQUETTES GÉNÉRIQUE ===== */

.label-editor-workspace {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 30px;
  min-height: 600px;
}

.editor-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas-container {
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  position: sticky;
  top: 55px;
}

.label-canvas {
  width: 370px;
  height: 265px;
  background: white;
  border: 2px solid #333;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.canvas-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.canvas-element {
  position: absolute;
  cursor: move;
  border: 2px solid transparent;
  min-width: 20px;
  min-height: 20px;
  user-select: none;
}

.canvas-element:hover {
  border-color: #007bff;
}

.canvas-element.selected {
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.canvas-element.text-element {
  padding: 2px;
  white-space: nowrap;
}

.canvas-element.image-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canvas-element.shape-element {
  border-radius: 0;
}

/* Poignées de redimensionnement */
.canvas-element.selected::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  cursor: nw-resize;
  z-index: 10;
}

.canvas-element.selected .resize-handles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resize-handle {
  position: absolute;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  pointer-events: all;
  z-index: 10;
}

.resize-handle.top-left {
  top: -4px;
  left: -4px;
  cursor: nw-resize;
}

.resize-handle.top-right {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}

.resize-handle.bottom-left {
  bottom: -4px;
  left: -4px;
  cursor: sw-resize;
}

.resize-handle.bottom-right {
  bottom: -4px;
  right: -4px;
  cursor: se-resize;
}

.resize-handle.top-center {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: n-resize;
}

.resize-handle.bottom-center {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: s-resize;
}

.resize-handle.left-center {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: w-resize;
}

.resize-handle.right-center {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: e-resize;
}

.canvas-info {
  display: flex;
  gap: 20px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  color: #666;
}

/* Outils d'édition */
.editor-tools {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.tools-header h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

.tool-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.tool-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tool-section h5 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: var(--aromex-black);
}

.tool-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-btn {
  font-family: var(--aromex-font-family-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px 10px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tool-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

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

/* Propriétés des éléments */
.property-group {
  margin-bottom: 15px;
}

.property-group label {
  font-family: var(--aromex-font-family-primary);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--aromex-black);
  margin-bottom: 5px;
}

.property-group input[type="text"],
.property-group input[type="number"],
.property-group select {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.property-group input:focus,
.property-group select:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.property-group input[type="range"] {
  width: 70%;
  margin-right: 10px;
}

.property-group input[type="color"] {
  width: 50px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.style-buttons {
  display: flex;
  gap: 5px;
}

.style-btn {
  font-family: var(--aromex-font-family-primary);
  width: 35px;
  height: 35px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.style-btn:hover,
.style-btn.active {
  background: var(--aromex-black);
  color: white;
  border-color: var(--aromex-black);
}

.position-inputs {
  display: flex;
  gap: 10px;
}

.position-inputs input {
  width: 50%;
}

.size-inputs {
  display: flex;
  gap: 10px;
}

.size-inputs input {
  width: 50%;
}

.property-actions {
  margin-top: 15px;
}

.btn-delete-element {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  background: #ff4444;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.btn-delete-element:hover {
  background: #cc0000;
}

/* Responsive éditeur */
@media (max-width: 768px) {
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
  }

  .canvas-container {
    padding: 20px;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero-main-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .products-showcase {
    gap: 50px;
  }

  .flavor-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .hero-main-title {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }

  .products-showcase {
    gap: 40px;
  }

  .configurator-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(1, 1fr);
  }
  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .visual-btn {
    width: 100%;
  }

  .configurator-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    min-width: 100%;
  }
}

/* ===== RESPONSIVE TABLETTE ===== */
@media (max-width: 768px) {
  .aromex-marqueblanch-page {
    padding: 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 50vh;
    padding: 40px 0 60px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin: 8px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-description p {
    font-size: 1rem;
    margin: 8px 0;
  }

  .creation-steps {
    margin: 40px 0;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin: 15px 0;
  }

  .step-text {
    text-align: center;
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* Showcase Produits */
  .products-showcase {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
  }

  .product-option {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 25px 20px;
  }

  .product-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .product-size {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .btn-personalize {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }

  .configurator-header,
  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .btn-back,
  .btn-back-to-config {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .product-preview {
    padding: 20px;
    margin-bottom: 15px;
  }

  .product-description p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .config-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .config-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Options de taille */
  .size-options {
    justify-content: center;
    gap: 8px;
  }

  .size-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 50px;
  }

  /* Options de recette */
  .recipe-options {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .recipe-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .flavor-category {
    padding: 8px 15px;
    height: 120px;
    border-radius: 10px;
  }

  .flavor-category img {
    width: 70px;
    height: 40px;
    margin-bottom: 10px;
  }

  .flavor-category span {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  /* Options visuelles */
  .visual-options {
    gap: 8px;
  }

  .visual-btn {
    padding: 12px;
    min-height: 50px;
  }

  .visual-text {
    font-size: 0.8rem;
  }

  .visual-btn small {
    font-size: 0.65rem;
  }

  .visual-icon {
    font-size: 1.2rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 12px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 40vh;
    padding: 30px 0 50px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin: 5px 0;
  }

  .hero-main-title {
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    margin: 15px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-description p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .creation-steps {
    margin: 30px 0;
  }

  .step-text {
    font-size: 0.9rem;
  }

  /* Showcase Produits */
  .products-showcase {
    margin: 30px 0;
    gap: 25px;
  }

  .product-option {
    min-width: 250px;
    max-width: 280px;
    padding: 20px 15px;
  }

  .product-image {
    height: 160px;
    margin-bottom: 12px;
  }

  .product-size {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .btn-personalize {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 20px;
    padding: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.3rem;
  }

  .product-preview {
    padding: 15px;
  }

  .config-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .config-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Options de taille */
  .size-options {
    gap: 6px;
  }

  .size-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 45px;
  }

  /* Options de recette */
  .recipe-options {
    gap: 6px;
    margin-bottom: 12px;
  }

  .recipe-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 70px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }

  .flavor-category {
    padding: 6px 10px;
    height: 100px;
    border-radius: 8px;
  }

  .flavor-category img {
    width: 60px;
    height: 35px;
    margin-bottom: 8px;
  }

  .flavor-category span {
    font-size: 0.7rem;
    line-height: 1;
  }

  /* Options visuelles */
  .visual-btn {
    padding: 10px;
    min-height: 45px;
  }

  .visual-text {
    font-size: 0.75rem;
  }

  .visual-btn small {
    font-size: 0.6rem;
  }

  .visual-icon {
    font-size: 1rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* Styles pour le récapitulatif de configuration */
.configuration-summary {
  margin: 30px 0;
  padding: 25px;
  background: var(--aromex-grey-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.configuration-summary h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--aromex-black);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--aromex-font-family-primary);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.summary-section {
  background: var(--aromex-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--aromex-grey-border);
  font-family: var(--aromex-font-family-primary);
}

.summary-section h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--aromex-blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--aromex-grey-border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--aromex-font-family-primary);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--aromex-grey-light);
  font-family: var(--aromex-font-family-primary);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-weight: 600;
  font-size: 16px;
  color: var(--aromex-black);
  border-top: 2px solid var(--aromex-blue);
  padding-top: 12px;
  margin-top: 8px;
  font-family: var(--aromex-font-family-primary);
}

.summary-label {
  font-weight: 500;
  color: var(--aromex-grey-dark);
  flex: 1;
  font-family: var(--aromex-font-family-primary);
}

.summary-value {
  font-weight: 600;
  color: var(--aromex-black);
  text-align: right;
  max-width: 60%;
  word-wrap: break-word;
  font-family: var(--aromex-font-family-primary);
}

.nicotine-details {
  margin-top: 10px;
}

.nicotine-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nicotine-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nicotine-rate-info {
  flex: 1;
}

.nicotine-rate-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nicotine-rate-quantity input[type="number"] {
  width: 60px;
  text-align: center;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nicotine-rate-quantity button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.nicotine-rate-quantity button:hover {
  background-color: #e5e5e5;
}

.nicotine-rate-quantity button:active {
  background-color: #d5d5d5;
}

.nicotine-rate-value {
  font-weight: bold;
  margin-right: 10px;
}

.nicotine-rate-units {
  color: #666;
}

.files-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.file-detail .file-icon {
  font-size: 16px;
  color: var(--aromex-blue);
}

.file-detail .file-name {
  font-weight: 500;
  color: var(--aromex-black);
  flex: 1;
  font-family: var(--aromex-font-family-primary);
}

.file-detail small {
  color: var(--aromex-grey-dark);
  font-style: italic;
  font-family: var(--aromex-font-family-primary);
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .configuration-summary {
    margin: 20px 0;
    padding: 20px;
  }

  .summary-section {
    padding: 15px;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .summary-value {
    max-width: 100%;
    text-align: left;
  }
}

/* ===== RESPONSIVE ÉDITEUR D'ÉTIQUETTES ===== */
@media (max-width: 768px) {
  /* Indicateur d'étapes */
  .step-indicator {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .step-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #ddd;
  }

  .step-item.active {
    background: #e3f2fd;
    border-color: var(--aromex-black);
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .step-title {
    font-size: 0.65rem;
    text-align: left;
    margin: 0;
  }

  /* Contenu des étapes */
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  /* Workspace éditeur */
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .canvas-container {
    padding: 20px;
    margin-bottom: 15px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .canvas-info {
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    text-align: center;
  }

  /* Outils d'édition */
  .editor-tools {
    padding: 15px;
    order: -1;
  }

  .tools-header h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .tool-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .tool-section h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .tool-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tool-btn {
    padding: 12px 8px;
    font-size: 0.7rem;
  }

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

  /* Propriétés des éléments */
  .property-group {
    margin-bottom: 12px;
  }

  .property-group label {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .property-group input,
  .property-group select {
    padding: 6px;
    font-size: 0.8rem;
  }

  .style-buttons {
    gap: 4px;
  }

  .style-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .position-inputs,
  .size-inputs {
    gap: 8px;
  }

  .btn-delete-element {
    padding: 8px;
    font-size: 0.75rem;
  }

  /* Prévisualisation */
  .final-preview,
  .customization-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .preview-container {
    padding: 20px;
    min-height: 250px;
  }

  .label-final-preview {
    width: 210px;
    height: 150px;
    transform: scale(0.6);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.6);
  }

  /* Validation panier */
  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .summary-preview {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .product-image-summary img {
    width: 60px;
  }

  .label-summary {
    width: 90px;
    height: 64px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.24);
  }

  .quantity-selection,
  .pricing-summary {
    width: 100%;
  }

  .pricing-summary {
    padding: 15px;
  }

  .price-line {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .price-line.total {
    font-size: 1rem;
    padding-top: 8px;
    margin-bottom: 15px;
  }

  /* Actions des étapes */
  .step-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ÉDITEUR ===== */
@media (max-width: 480px) {
  .step-item {
    padding: 8px;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .step-title {
    font-size: 0.6rem;
  }

  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .canvas-container {
    padding: 15px;
  }

  .label-canvas {
    width: 210px;
    height: 150px;
  }

  .editor-tools {
    padding: 12px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tool-btn {
    padding: 10px 6px;
    font-size: 0.65rem;
  }

  .tool-icon {
    font-size: 1rem;
  }

  .property-group input,
  .property-group select {
    padding: 5px;
    font-size: 0.75rem;
  }

  .style-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .preview-container {
    padding: 15px;
    min-height: 200px;
  }

  .label-final-preview {
    width: 168px;
    height: 120px;
    transform: scale(0.5);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.5);
  }

  .label-summary {
    width: 72px;
    height: 51px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.2);
  }

  .pricing-summary {
    padding: 12px;
  }

  .price-line {
    font-size: 0.75rem;
  }

  .price-line.total {
    font-size: 0.9rem;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE TRÈS PETITS ÉCRANS ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .product-option {
    min-width: 220px;
    max-width: 250px;
    padding: 15px 10px;
  }

  .product-image {
    height: 140px;
  }

  .product-size {
    font-size: 1.1rem;
  }

  .btn-personalize {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .flavor-categories {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flavor-category {
    height: 80px;
    padding: 5px 8px;
  }

  .flavor-category img {
    width: 50px;
    height: 30px;
    margin-bottom: 5px;
  }

  .flavor-category span {
    font-size: 0.65rem;
  }

  .label-canvas {
    width: 180px;
    height: 130px;
  }

  .tool-btn {
    padding: 8px 4px;
    font-size: 0.6rem;
  }

  .label-final-preview {
    width: 140px;
    height: 100px;
    transform: scale(0.4);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.4);
  }
}

/* ===== MESSAGES D'ALERTE ===== */
.alert {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 500;
  border: 2px solid;
  animation: slideInDown 0.5s ease-out;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
}

.alert p {
  margin: 0;
  font-size: 0.95rem;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FORMULAIRE DE DEMANDE DE DEVIS ===== */
.quote-request-form {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  animation: fadeIn 0.5s ease-out;
}

.quote-request-form .form-container {
  padding: 30px;
}

.quote-request-form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.quote-request-form .form-header h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--aromex-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.btn-back-to-config,
.btn-back-from-quote {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  color: var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back-to-config:hover,
.btn-back-from-quote:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.btn-request-quote {
  background: var(--aromex-blue-hover);
  border: 2px solid var(--aromex-blue-hover);
  color: var(--aromex-black);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-request-quote:hover {
  background: var(--aromex-black);
  border-color: var(--aromex-black);
  color: var(--aromex-white);
  transform: translateY(-2px);
}

/* Sections du formulaire */
.form-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--aromex-black);
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--aromex-grey-light);
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
  color: var(--aromex-white);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--aromex-grey-dark);
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
}

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

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue);
  border-color: var(--aromex-blue);
  color: var(--aromex-white);
}

/* Options visuelles */
/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--aromex-black);
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: #666;
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue-hover);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.recipe-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

/* Options visuelles */
.visual-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  min-height: 60px;
}

.visual-btn:hover,
.visual-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.visual-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-note {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--aromex-black);
  text-transform: none;
  letter-spacing: normal;
}

.visual-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
}

.visual-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.visual-btn small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
  text-transform: none;
  letter-spacing: normal;
}

/* Actions du configurateur */
.configurator-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-to-cart,
.btn-create-recipe {
  font-family: var(--aromex-font-family-primary);
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid var(--aromex-black);
  min-width: 200px;
}

.btn-add-to-cart {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-add-to-cart:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.btn-create-recipe {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-create-recipe:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-create-recipe:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

/* ===== RESPONSIVE CONFIGURATEUR ===== */
@media (max-width: 768px) {
  .configurator-content {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visual-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .configurator-actions {
    flex-direction: column;
  }

  .size-options {
    justify-content: center;
  }

  .recipe-options {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .products-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-content {
    flex-direction: column;
  }

  .configurator-left,
  .configurator-right {
    width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-category {
    height: 120px;
  }

  .flavor-category img {
    width: 40px;
    height: 40px;
  }

  .flavor-category span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .product-option {
    min-width: 200px;
    padding: 20px 15px;
  }

  .product-image {
    height: 120px;
  }

  .product-size {
    font-size: 1.3rem;
  }
}

/* ===== CRÉATEUR D'ÉTIQUETTES ===== */
.label-creator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.creator-header h2 {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back-to-config {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back-to-config:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.creator-steps {
  width: 100%;
}

/* Indicateur d'étapes */
.step-indicator {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--aromex-black);
  color: var(--aromex-white);
  border-color: var(--aromex-black);
}

.step-item.completed .step-number {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

.step-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--aromex-black);
  transition: color 0.3s ease;
}

.step-item.active .step-title {
  color: var(--aromex-black);
  font-weight: 700;
}

.step-item.completed .step-title {
  color: #666;
}

/* Étapes cliquables pour navigation */
.step-item[style*="cursor: pointer"]:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.step-item[style*="cursor: pointer"]:hover .step-number {
  background-color: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.step-item[style*="cursor: pointer"]:hover .step-title {
  color: var(--aromex-black);
}

/* Contenu des étapes */
.step-content {
  display: none;
  padding: 0;
}

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

.step-content h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Étape 1: Sélection de template */
.template-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.template-option {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.template-option:hover,
.template-option.selected {
  border-color: var(--aromex-black);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-image {
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-preview {
  width: 120px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Thèmes de templates */
.ocean-theme {
  background: linear-gradient(
    135deg,
    #4a90e2 0%,
    var(--aromex-blue-hover) 100%
  );
  color: white;
}

.ocean-theme .label-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ocean-theme .label-company {
  font-size: 0.5rem;
  font-weight: 600;
}

.vintage-theme {
  background: #f5e6d3;
  color: #8b4513;
  padding: 8px;
}

.vintage-theme .label-header {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.vintage-theme .label-icon {
  font-size: 1rem;
  margin: 3px 0;
}

.vintage-theme .label-subtitle,
.vintage-theme .label-contact {
  font-size: 0.35rem;
  margin: 2px 0;
}

.modern-theme {
  background: white;
  color: #333;
  border: 2px solid #4a90e2;
}

.modern-theme .label-logo-big {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 3px;
}

.modern-theme .label-company-name {
  font-size: 0.4rem;
  font-weight: 600;
}

.modern-theme .label-accent {
  width: 30px;
  height: 2px;
  background: #4a90e2;
  margin: 5px auto 0;
}

.template-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.template-size,
.template-price {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.8rem;
  color: #666;
}

.btn-select-template {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-black);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-select-template:hover {
  background: var(--aromex-blue-hover);
}

/* Étape 2: Personnalisation */
.customization-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.live-preview .label-preview {
  width: 280px;
  height: 180px;
  font-size: 1.2rem;
  transform: scale(1.2);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-info h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.preview-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.preview-info li {
  font-family: var(--aromex-font-family-primary);
  padding: 8px 0;
  color: #28a745;
  font-weight: 500;
}

/* Étape 4: Validation panier */
.cart-validation {
  margin-bottom: 30px;
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.summary-preview {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.product-image-summary img {
  width: 160px;
  height: auto;
}

.label-summary {
  width: 100%;
  height: 20%;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
}

/* S'assurer que le contenu cloné garde ses styles dans le résumé aussi */
.label-summary .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.32);
  transform-origin: top left;
}

.label-summary .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-summary .resize-handles {
  display: none !important;
}

.label-summary .canvas-grid {
  display: none !important;
}

.quantity-selection label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.quantity-selection select {
  font-family: var(--aromex-font-family-primary);
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.pricing-summary {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
}

.price-line.total {
  border-top: 2px solid #ddd;
  padding-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Actions des étapes */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-validate {
  font-family: var(--aromex-font-family-primary);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--aromex-black);
  min-width: 150px;
}

.btn-prev {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-prev:hover {
  background: #ddd;
}

.btn-next,
.btn-validate {
  background: var(--aromex-black);
  color: white;
}

.btn-next:hover,
.btn-validate:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

/* Responsive créateur d'étiquettes */
@media (max-width: 768px) {
  .label-creator {
    padding: 20px;
  }

  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .creator-header h2 {
    font-size: 1.5rem;
  }

  .template-selection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customization-workspace,
  .final-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

.customization-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--aromex-black);
}

.form-group input[type="text"] {
  font-family: var(--aromex-font-family-primary);
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.color-picker input[type="color"] {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

/* Upload de logo */
.form-group input[type="file"] {
  font-family: var(--aromex-font-family-primary);
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

.form-group small {
  font-family: var(--aromex-font-family-primary);
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* Amélioration des aperçus de logos */
.label-preview img {
  border-radius: 2px;
}

/* Étape 3: Prévisualisation */
.final-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.label-final-preview {
  width: 280px;
  height: 200px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
  transform: scale(0.75);
}

/* S'assurer que le contenu cloné garde ses styles */
.label-final-preview .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.75);
  transform-origin: top left;
}

.label-final-preview .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-final-preview .resize-handles {
  display: none !important;
}

.label-final-preview .canvas-grid {
  display: none !important;
}

/* ===== ÉDITEUR D'ÉTIQUETTES GÉNÉRIQUE ===== */

.label-editor-workspace {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 30px;
  min-height: 600px;
}

.editor-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas-container {
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  position: sticky;
  top: 55px;
}

.label-canvas {
  width: 370px;
  height: 265px;
  background: white;
  border: 2px solid #333;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.canvas-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.canvas-element {
  position: absolute;
  cursor: move;
  border: 2px solid transparent;
  min-width: 20px;
  min-height: 20px;
  user-select: none;
}

.canvas-element:hover {
  border-color: #007bff;
}

.canvas-element.selected {
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.canvas-element.text-element {
  padding: 2px;
  white-space: nowrap;
}

.canvas-element.image-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canvas-element.shape-element {
  border-radius: 0;
}

/* Poignées de redimensionnement */
.canvas-element.selected::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  cursor: nw-resize;
  z-index: 10;
}

.canvas-element.selected .resize-handles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resize-handle {
  position: absolute;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  pointer-events: all;
  z-index: 10;
}

.resize-handle.top-left {
  top: -4px;
  left: -4px;
  cursor: nw-resize;
}

.resize-handle.top-right {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}

.resize-handle.bottom-left {
  bottom: -4px;
  left: -4px;
  cursor: sw-resize;
}

.resize-handle.bottom-right {
  bottom: -4px;
  right: -4px;
  cursor: se-resize;
}

.resize-handle.top-center {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: n-resize;
}

.resize-handle.bottom-center {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: s-resize;
}

.resize-handle.left-center {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: w-resize;
}

.resize-handle.right-center {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: e-resize;
}

.canvas-info {
  display: flex;
  gap: 20px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  color: #666;
}

/* Outils d'édition */
.editor-tools {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.tools-header h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

.tool-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.tool-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tool-section h5 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: var(--aromex-black);
}

.tool-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-btn {
  font-family: var(--aromex-font-family-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px 10px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tool-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

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

/* Propriétés des éléments */
.property-group {
  margin-bottom: 15px;
}

.property-group label {
  font-family: var(--aromex-font-family-primary);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--aromex-black);
  margin-bottom: 5px;
}

.property-group input[type="text"],
.property-group input[type="number"],
.property-group select {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.property-group input:focus,
.property-group select:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.property-group input[type="range"] {
  width: 70%;
  margin-right: 10px;
}

.property-group input[type="color"] {
  width: 50px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.style-buttons {
  display: flex;
  gap: 5px;
}

.style-btn {
  font-family: var(--aromex-font-family-primary);
  width: 35px;
  height: 35px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.style-btn:hover,
.style-btn.active {
  background: var(--aromex-black);
  color: white;
  border-color: var(--aromex-black);
}

.position-inputs {
  display: flex;
  gap: 10px;
}

.position-inputs input {
  width: 50%;
}

.size-inputs {
  display: flex;
  gap: 10px;
}

.size-inputs input {
  width: 50%;
}

.property-actions {
  margin-top: 15px;
}

.btn-delete-element {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  background: #ff4444;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.btn-delete-element:hover {
  background: #cc0000;
}

/* Responsive éditeur */
@media (max-width: 768px) {
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
  }

  .canvas-container {
    padding: 20px;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero-main-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .products-showcase {
    gap: 50px;
  }

  .flavor-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .hero-main-title {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }

  .products-showcase {
    gap: 40px;
  }

  .configurator-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(1, 1fr);
  }
  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .visual-btn {
    width: 100%;
  }

  .configurator-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    min-width: 100%;
  }
}

/* ===== RESPONSIVE TABLETTE ===== */
@media (max-width: 768px) {
  .aromex-marqueblanch-page {
    padding: 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 50vh;
    padding: 40px 0 60px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin: 8px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-description p {
    font-size: 1rem;
    margin: 8px 0;
  }

  .creation-steps {
    margin: 40px 0;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin: 15px 0;
  }

  .step-text {
    text-align: center;
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* Showcase Produits */
  .products-showcase {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
  }

  .product-option {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 25px 20px;
  }

  .product-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .product-size {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .btn-personalize {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }

  .configurator-header,
  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .btn-back,
  .btn-back-to-config {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .product-preview {
    padding: 20px;
    margin-bottom: 15px;
  }

  .product-description p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .config-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .config-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Options de taille */
  .size-options {
    justify-content: center;
    gap: 8px;
  }

  .size-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 50px;
  }

  /* Options de recette */
  .recipe-options {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .recipe-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .flavor-category {
    padding: 8px 15px;
    height: 120px;
    border-radius: 10px;
  }

  .flavor-category img {
    width: 70px;
    height: 40px;
    margin-bottom: 10px;
  }

  .flavor-category span {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  /* Options visuelles */
  .visual-options {
    gap: 8px;
  }

  .visual-btn {
    padding: 12px;
    min-height: 50px;
  }

  .visual-text {
    font-size: 0.8rem;
  }

  .visual-btn small {
    font-size: 0.65rem;
  }

  .visual-icon {
    font-size: 1.2rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 12px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 40vh;
    padding: 30px 0 50px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin: 5px 0;
  }

  .hero-main-title {
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    margin: 15px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-description p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .creation-steps {
    margin: 30px 0;
  }

  .step-text {
    font-size: 0.9rem;
  }

  /* Showcase Produits */
  .products-showcase {
    margin: 30px 0;
    gap: 25px;
  }

  .product-option {
    min-width: 250px;
    max-width: 280px;
    padding: 20px 15px;
  }

  .product-image {
    height: 160px;
    margin-bottom: 12px;
  }

  .product-size {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .btn-personalize {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 20px;
    padding: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.3rem;
  }

  .product-preview {
    padding: 15px;
  }

  .config-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .config-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Options de taille */
  .size-options {
    gap: 6px;
  }

  .size-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 45px;
  }

  /* Options de recette */
  .recipe-options {
    gap: 6px;
    margin-bottom: 12px;
  }

  .recipe-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 70px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }

  .flavor-category {
    padding: 6px 10px;
    height: 100px;
    border-radius: 8px;
  }

  .flavor-category img {
    width: 60px;
    height: 35px;
    margin-bottom: 8px;
  }

  .flavor-category span {
    font-size: 0.7rem;
    line-height: 1;
  }

  /* Options visuelles */
  .visual-btn {
    padding: 10px;
    min-height: 45px;
  }

  .visual-text {
    font-size: 0.75rem;
  }

  .visual-btn small {
    font-size: 0.6rem;
  }

  .visual-icon {
    font-size: 1rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* Styles pour le récapitulatif de configuration */
.configuration-summary {
  margin: 30px 0;
  padding: 25px;
  background: var(--aromex-grey-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.configuration-summary h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--aromex-black);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--aromex-font-family-primary);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.summary-section {
  background: var(--aromex-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--aromex-grey-border);
  font-family: var(--aromex-font-family-primary);
}

.summary-section h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--aromex-blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--aromex-grey-border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--aromex-font-family-primary);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--aromex-grey-light);
  font-family: var(--aromex-font-family-primary);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-weight: 600;
  font-size: 16px;
  color: var(--aromex-black);
  border-top: 2px solid var(--aromex-blue);
  padding-top: 12px;
  margin-top: 8px;
  font-family: var(--aromex-font-family-primary);
}

.summary-label {
  font-weight: 500;
  color: var(--aromex-grey-dark);
  flex: 1;
  font-family: var(--aromex-font-family-primary);
}

.summary-value {
  font-weight: 600;
  color: var(--aromex-black);
  text-align: right;
  max-width: 60%;
  word-wrap: break-word;
  font-family: var(--aromex-font-family-primary);
}

.nicotine-details {
  margin-top: 10px;
}

.nicotine-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nicotine-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nicotine-rate-info {
  flex: 1;
}

.nicotine-rate-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nicotine-rate-quantity input[type="number"] {
  width: 60px;
  text-align: center;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.nicotine-rate-quantity button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.nicotine-rate-quantity button:hover {
  background-color: #e5e5e5;
}

.nicotine-rate-quantity button:active {
  background-color: #d5d5d5;
}

.nicotine-rate-value {
  font-weight: bold;
  margin-right: 10px;
}

.nicotine-rate-units {
  color: #666;
}

.files-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.file-detail .file-icon {
  font-size: 16px;
}

.file-detail .file-name {
  font-weight: 500;
  color: #2c3e50;
  flex: 1;
}

.file-detail small {
  color: #666;
  font-style: italic;
}

.nicotine-rate-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nicotine-rate-quantity button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--aromex-blue);
  background: var(--aromex-white);
  color: var(--aromex-blue);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
  transition: all 0.2s ease;
}

.nicotine-rate-quantity button:hover {
  background: var(--aromex-blue);
  color: var(--aromex-white);
}

.nicotine-rate-quantity input {
  width: 50px;
  height: 24px;
  text-align: center;
  border: 1px solid var(--aromex-grey-border);
  border-radius: 4px;
  font-size: 14px;
  padding: 0 4px;
}

.nicotine-rate-quantity input:focus {
  outline: none;
  border-color: var(--aromex-blue);
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .configuration-summary {
    margin: 20px 0;
    padding: 20px;
  }

  .summary-section {
    padding: 15px;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .summary-value {
    max-width: 100%;
    text-align: left;
  }
}

/* ===== RESPONSIVE ÉDITEUR D'ÉTIQUETTES ===== */
@media (max-width: 768px) {
  /* Indicateur d'étapes */
  .step-indicator {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .step-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #ddd;
  }

  .step-item.active {
    background: #e3f2fd;
    border-color: var(--aromex-black);
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .step-title {
    font-size: 0.65rem;
    text-align: left;
    margin: 0;
  }

  /* Contenu des étapes */
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  /* Workspace éditeur */
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .canvas-container {
    padding: 20px;
    margin-bottom: 15px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .canvas-info {
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    text-align: center;
  }

  /* Outils d'édition */
  .editor-tools {
    padding: 15px;
    order: -1;
  }

  .tools-header h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .tool-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .tool-section h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .tool-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tool-btn {
    padding: 12px 8px;
    font-size: 0.7rem;
  }

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

  /* Propriétés des éléments */
  .property-group {
    margin-bottom: 12px;
  }

  .property-group label {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .property-group input,
  .property-group select {
    padding: 6px;
    font-size: 0.8rem;
  }

  .style-buttons {
    gap: 4px;
  }

  .style-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .position-inputs,
  .size-inputs {
    gap: 8px;
  }

  .btn-delete-element {
    padding: 8px;
    font-size: 0.75rem;
  }

  /* Prévisualisation */
  .final-preview,
  .customization-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .preview-container {
    padding: 20px;
    min-height: 250px;
  }

  .label-final-preview {
    width: 210px;
    height: 150px;
    transform: scale(0.6);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.6);
  }

  /* Validation panier */
  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .summary-preview {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .product-image-summary img {
    width: 60px;
  }

  .label-summary {
    width: 90px;
    height: 64px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.24);
  }

  .quantity-selection,
  .pricing-summary {
    width: 100%;
  }

  .pricing-summary {
    padding: 15px;
  }

  .price-line {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .price-line.total {
    font-size: 1rem;
    padding-top: 8px;
    margin-bottom: 15px;
  }

  /* Actions des étapes */
  .step-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ÉDITEUR ===== */
@media (max-width: 480px) {
  .step-item {
    padding: 8px;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .step-title {
    font-size: 0.6rem;
  }

  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .canvas-container {
    padding: 15px;
  }

  .label-canvas {
    width: 210px;
    height: 150px;
  }

  .editor-tools {
    padding: 12px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tool-btn {
    padding: 10px 6px;
    font-size: 0.65rem;
  }

  .tool-icon {
    font-size: 1rem;
  }

  .property-group input,
  .property-group select {
    padding: 5px;
    font-size: 0.75rem;
  }

  .style-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .preview-container {
    padding: 15px;
    min-height: 200px;
  }

  .label-final-preview {
    width: 168px;
    height: 120px;
    transform: scale(0.5);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.5);
  }

  .label-summary {
    width: 72px;
    height: 51px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.2);
  }

  .pricing-summary {
    padding: 12px;
  }

  .price-line {
    font-size: 0.75rem;
  }

  .price-line.total {
    font-size: 0.9rem;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE TRÈS PETITS ÉCRANS ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .product-option {
    min-width: 220px;
    max-width: 250px;
    padding: 15px 10px;
  }

  .product-image {
    height: 140px;
  }

  .product-size {
    font-size: 1.1rem;
  }

  .btn-personalize {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .flavor-categories {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flavor-category {
    height: 80px;
    padding: 5px 8px;
  }

  .flavor-category img {
    width: 50px;
    height: 30px;
    margin-bottom: 5px;
  }

  .flavor-category span {
    font-size: 0.65rem;
  }

  .label-canvas {
    width: 180px;
    height: 130px;
  }

  .tool-btn {
    padding: 8px 4px;
    font-size: 0.6rem;
  }

  .label-final-preview {
    width: 140px;
    height: 100px;
    transform: scale(0.4);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.4);
  }
}

/* ===== MESSAGES D'ALERTE ===== */
.alert {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 500;
  border: 2px solid;
  animation: slideInDown 0.5s ease-out;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
}

.alert p {
  margin: 0;
  font-size: 0.95rem;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FORMULAIRE DE DEMANDE DE DEVIS ===== */
.quote-request-form {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  animation: fadeIn 0.5s ease-out;
}

.quote-request-form .form-container {
  padding: 30px;
}

.quote-request-form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.quote-request-form .form-header h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--aromex-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.btn-back-to-config,
.btn-back-from-quote {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  color: var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back-to-config:hover,
.btn-back-from-quote:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.btn-request-quote {
  background: var(--aromex-blue-hover);
  border: 2px solid var(--aromex-blue-hover);
  color: var(--aromex-black);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-request-quote:hover {
  background: var(--aromex-black);
  border-color: var(--aromex-black);
  color: var(--aromex-white);
  transform: translateY(-2px);
}

/* Sections du formulaire */
.form-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--aromex-black);
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: #666;
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue-hover);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.recipe-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

/* Options visuelles */
.visual-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  min-height: 60px;
}

.visual-btn:hover,
.visual-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.visual-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-note {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--aromex-black);
  text-transform: none;
  letter-spacing: normal;
}

.visual-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
}

.visual-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.visual-btn small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
  text-transform: none;
  letter-spacing: normal;
}

/* Actions du configurateur */
.configurator-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-to-cart,
.btn-create-recipe {
  font-family: var(--aromex-font-family-primary);
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid var(--aromex-black);
  min-width: 200px;
}

.btn-add-to-cart {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-add-to-cart:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.btn-create-recipe {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-create-recipe:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-create-recipe:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

/* ===== RESPONSIVE CONFIGURATEUR ===== */
@media (max-width: 768px) {
  .configurator-content {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visual-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .configurator-actions {
    flex-direction: column;
  }

  .size-options {
    justify-content: center;
  }

  .recipe-options {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .products-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-content {
    flex-direction: column;
  }

  .configurator-left,
  .configurator-right {
    width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-category {
    height: 120px;
  }

  .flavor-category img {
    width: 40px;
    height: 40px;
  }

  .flavor-category span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .product-option {
    min-width: 200px;
    padding: 20px 15px;
  }

  .product-image {
    height: 120px;
  }

  .product-size {
    font-size: 1.3rem;
  }
}

/* ===== CRÉATEUR D'ÉTIQUETTES ===== */
.label-creator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.creator-header h2 {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back-to-config {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back-to-config:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.creator-steps {
  width: 100%;
}

/* Indicateur d'étapes */
.step-indicator {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--aromex-black);
  color: var(--aromex-white);
  border-color: var(--aromex-black);
}

.step-item.completed .step-number {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

.step-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--aromex-black);
  transition: color 0.3s ease;
}

.step-item.active .step-title {
  color: var(--aromex-black);
  font-weight: 700;
}

.step-item.completed .step-title {
  color: #666;
}

/* Étapes cliquables pour navigation */
.step-item[style*="cursor: pointer"]:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.step-item[style*="cursor: pointer"]:hover .step-number {
  background-color: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.step-item[style*="cursor: pointer"]:hover .step-title {
  color: var(--aromex-black);
}

/* Contenu des étapes */
.step-content {
  display: none;
  padding: 0;
}

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

.step-content h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Étape 1: Sélection de template */
.template-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.template-option {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.template-option:hover,
.template-option.selected {
  border-color: var(--aromex-black);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-image {
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-preview {
  width: 120px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Thèmes de templates */
.ocean-theme {
  background: linear-gradient(
    135deg,
    #4a90e2 0%,
    var(--aromex-blue-hover) 100%
  );
  color: white;
}

.ocean-theme .label-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ocean-theme .label-company {
  font-size: 0.5rem;
  font-weight: 600;
}

.vintage-theme {
  background: #f5e6d3;
  color: #8b4513;
  padding: 8px;
}

.vintage-theme .label-header {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.vintage-theme .label-icon {
  font-size: 1rem;
  margin: 3px 0;
}

.vintage-theme .label-subtitle,
.vintage-theme .label-contact {
  font-size: 0.35rem;
  margin: 2px 0;
}

.modern-theme {
  background: white;
  color: #333;
  border: 2px solid #4a90e2;
}

.modern-theme .label-logo-big {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 3px;
}

.modern-theme .label-company-name {
  font-size: 0.4rem;
  font-weight: 600;
}

.modern-theme .label-accent {
  width: 30px;
  height: 2px;
  background: #4a90e2;
  margin: 5px auto 0;
}

.template-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.template-size,
.template-price {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.8rem;
  color: #666;
}

.btn-select-template {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-black);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-select-template:hover {
  background: var(--aromex-blue-hover);
}

/* Étape 2: Personnalisation */
.customization-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.live-preview .label-preview {
  width: 280px;
  height: 180px;
  font-size: 1.2rem;
  transform: scale(1.2);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-info h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.preview-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.preview-info li {
  font-family: var(--aromex-font-family-primary);
  padding: 8px 0;
  color: #28a745;
  font-weight: 500;
}

/* Étape 4: Validation panier */
.cart-validation {
  margin-bottom: 30px;
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.summary-preview {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.product-image-summary img {
  width: 160px;
  height: auto;
}

.label-summary {
  width: 100%;
  height: 20%;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
}

/* S'assurer que le contenu cloné garde ses styles dans le résumé aussi */
.label-summary .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.32);
  transform-origin: top left;
}

.label-summary .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-summary .resize-handles {
  display: none !important;
}

.label-summary .canvas-grid {
  display: none !important;
}

.quantity-selection label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.quantity-selection select {
  font-family: var(--aromex-font-family-primary);
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.pricing-summary {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
}

.price-line.total {
  border-top: 2px solid #ddd;
  padding-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Actions des étapes */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-validate {
  font-family: var(--aromex-font-family-primary);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--aromex-black);
  min-width: 150px;
}

.btn-prev {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-prev:hover {
  background: #ddd;
}

.btn-next,
.btn-validate {
  background: var(--aromex-black);
  color: white;
}

.btn-next:hover,
.btn-validate:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

/* Responsive créateur d'étiquettes */
@media (max-width: 768px) {
  .label-creator {
    padding: 20px;
  }

  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .creator-header h2 {
    font-size: 1.5rem;
  }

  .template-selection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customization-workspace,
  .final-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

.customization-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--aromex-black);
}

.form-group input[type="text"] {
  font-family: var(--aromex-font-family-primary);
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.color-picker input[type="color"] {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

/* Upload de logo */
.form-group input[type="file"] {
  font-family: var(--aromex-font-family-primary);
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

.form-group small {
  font-family: var(--aromex-font-family-primary);
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* Amélioration des aperçus de logos */
.label-preview img {
  border-radius: 2px;
}

/* Étape 3: Prévisualisation */
.final-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.label-final-preview {
  width: 280px;
  height: 200px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
  transform: scale(0.75);
}

/* S'assurer que le contenu cloné garde ses styles */
.label-final-preview .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.75);
  transform-origin: top left;
}

.label-final-preview .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-final-preview .resize-handles {
  display: none !important;
}

.label-final-preview .canvas-grid {
  display: none !important;
}

/* ===== ÉDITEUR D'ÉTIQUETTES GÉNÉRIQUE ===== */

.label-editor-workspace {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 30px;
  min-height: 600px;
}

.editor-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas-container {
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  position: sticky;
  top: 55px;
}

.label-canvas {
  width: 370px;
  height: 265px;
  background: white;
  border: 2px solid #333;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.canvas-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.canvas-element {
  position: absolute;
  cursor: move;
  border: 2px solid transparent;
  min-width: 20px;
  min-height: 20px;
  user-select: none;
}

.canvas-element:hover {
  border-color: #007bff;
}

.canvas-element.selected {
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.canvas-element.text-element {
  padding: 2px;
  white-space: nowrap;
}

.canvas-element.image-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canvas-element.shape-element {
  border-radius: 0;
}

/* Poignées de redimensionnement */
.canvas-element.selected::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  cursor: nw-resize;
  z-index: 10;
}

.canvas-element.selected .resize-handles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resize-handle {
  position: absolute;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  pointer-events: all;
  z-index: 10;
}

.resize-handle.top-left {
  top: -4px;
  left: -4px;
  cursor: nw-resize;
}

.resize-handle.top-right {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}

.resize-handle.bottom-left {
  bottom: -4px;
  left: -4px;
  cursor: sw-resize;
}

.resize-handle.bottom-right {
  bottom: -4px;
  right: -4px;
  cursor: se-resize;
}

.resize-handle.top-center {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: n-resize;
}

.resize-handle.bottom-center {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: s-resize;
}

.resize-handle.left-center {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: w-resize;
}

.resize-handle.right-center {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: e-resize;
}

.canvas-info {
  display: flex;
  gap: 20px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  color: #666;
}

/* Outils d'édition */
.editor-tools {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.tools-header h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

.tool-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.tool-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tool-section h5 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: var(--aromex-black);
}

.tool-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-btn {
  font-family: var(--aromex-font-family-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px 10px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tool-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

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

/* Propriétés des éléments */
.property-group {
  margin-bottom: 15px;
}

.property-group label {
  font-family: var(--aromex-font-family-primary);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--aromex-black);
  margin-bottom: 5px;
}

.property-group input[type="text"],
.property-group input[type="number"],
.property-group select {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.property-group input:focus,
.property-group select:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.property-group input[type="range"] {
  width: 70%;
  margin-right: 10px;
}

.property-group input[type="color"] {
  width: 50px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.style-buttons {
  display: flex;
  gap: 5px;
}

.style-btn {
  font-family: var(--aromex-font-family-primary);
  width: 35px;
  height: 35px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.style-btn:hover,
.style-btn.active {
  background: var(--aromex-black);
  color: white;
  border-color: var(--aromex-black);
}

.position-inputs {
  display: flex;
  gap: 10px;
}

.position-inputs input {
  width: 50%;
}

.size-inputs {
  display: flex;
  gap: 10px;
}

.size-inputs input {
  width: 50%;
}

.property-actions {
  margin-top: 15px;
}

.btn-delete-element {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  background: #ff4444;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.btn-delete-element:hover {
  background: #cc0000;
}

/* Responsive éditeur */
@media (max-width: 768px) {
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
  }

  .canvas-container {
    padding: 20px;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero-main-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .products-showcase {
    gap: 50px;
  }

  .flavor-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .hero-main-title {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }

  .products-showcase {
    gap: 40px;
  }

  .configurator-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(1, 1fr);
  }
  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .visual-btn {
    width: 100%;
  }

  .configurator-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    min-width: 100%;
  }
}

/* ===== RESPONSIVE TABLETTE ===== */
@media (max-width: 768px) {
  .aromex-marqueblanch-page {
    padding: 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 50vh;
    padding: 40px 0 60px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin: 8px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-description p {
    font-size: 1rem;
    margin: 8px 0;
  }

  .creation-steps {
    margin: 40px 0;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin: 15px 0;
  }

  .step-text {
    text-align: center;
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* Showcase Produits */
  .products-showcase {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
  }

  .product-option {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 25px 20px;
  }

  .product-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .product-size {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .btn-personalize {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }

  .configurator-header,
  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .btn-back,
  .btn-back-to-config {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .product-preview {
    padding: 20px;
    margin-bottom: 15px;
  }

  .product-description p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .config-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .config-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Options de taille */
  .size-options {
    justify-content: center;
    gap: 8px;
  }

  .size-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 50px;
  }

  /* Options de recette */
  .recipe-options {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .recipe-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .flavor-category {
    padding: 8px 15px;
    height: 120px;
    border-radius: 10px;
  }

  .flavor-category img {
    width: 70px;
    height: 40px;
    margin-bottom: 10px;
  }

  .flavor-category span {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  /* Options visuelles */
  .visual-options {
    gap: 8px;
  }

  .visual-btn {
    padding: 12px;
    min-height: 50px;
  }

  .visual-text {
    font-size: 0.8rem;
  }

  .visual-btn small {
    font-size: 0.65rem;
  }

  .visual-icon {
    font-size: 1.2rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 12px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 40vh;
    padding: 30px 0 50px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin: 5px 0;
  }

  .hero-main-title {
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    margin: 15px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-description p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .creation-steps {
    margin: 30px 0;
  }

  .step-text {
    font-size: 0.9rem;
  }

  /* Showcase Produits */
  .products-showcase {
    margin: 30px 0;
    gap: 25px;
  }

  .product-option {
    min-width: 250px;
    max-width: 280px;
    padding: 20px 15px;
  }

  .product-image {
    height: 160px;
    margin-bottom: 12px;
  }

  .product-size {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .btn-personalize {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 20px;
    padding: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.3rem;
  }

  .product-preview {
    padding: 15px;
  }

  .config-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .config-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Options de taille */
  .size-options {
    gap: 6px;
  }

  .size-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 45px;
  }

  /* Options de recette */
  .recipe-options {
    gap: 6px;
    margin-bottom: 12px;
  }

  .recipe-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 70px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }

  .flavor-category {
    padding: 6px 10px;
    height: 100px;
    border-radius: 8px;
  }

  .flavor-category img {
    width: 60px;
    height: 35px;
    margin-bottom: 8px;
  }

  .flavor-category span {
    font-size: 0.7rem;
    line-height: 1;
  }

  /* Options visuelles */
  .visual-btn {
    padding: 10px;
    min-height: 45px;
  }

  .visual-text {
    font-size: 0.75rem;
  }

  .visual-btn small {
    font-size: 0.6rem;
  }

  .visual-icon {
    font-size: 1rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE ÉDITEUR D'ÉTIQUETTES ===== */
@media (max-width: 768px) {
  /* Indicateur d'étapes */
  .step-indicator {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .step-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #ddd;
  }

  .step-item.active {
    background: #e3f2fd;
    border-color: var(--aromex-black);
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .step-title {
    font-size: 0.65rem;
    text-align: left;
    margin: 0;
  }

  /* Contenu des étapes */
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  /* Workspace éditeur */
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .canvas-container {
    padding: 20px;
    margin-bottom: 15px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .canvas-info {
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    text-align: center;
  }

  /* Outils d'édition */
  .editor-tools {
    padding: 15px;
    order: -1;
  }

  .tools-header h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .tool-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .tool-section h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .tool-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tool-btn {
    padding: 12px 8px;
    font-size: 0.7rem;
  }

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

  /* Propriétés des éléments */
  .property-group {
    margin-bottom: 12px;
  }

  .property-group label {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .property-group input,
  .property-group select {
    padding: 6px;
    font-size: 0.8rem;
  }

  .style-buttons {
    gap: 4px;
  }

  .style-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .position-inputs,
  .size-inputs {
    gap: 8px;
  }

  .btn-delete-element {
    padding: 8px;
    font-size: 0.75rem;
  }

  /* Prévisualisation */
  .final-preview,
  .customization-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .preview-container {
    padding: 20px;
    min-height: 250px;
  }

  .label-final-preview {
    width: 210px;
    height: 150px;
    transform: scale(0.6);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.6);
  }

  /* Validation panier */
  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .summary-preview {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .product-image-summary img {
    width: 60px;
  }

  .label-summary {
    width: 90px;
    height: 64px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.24);
  }

  .quantity-selection,
  .pricing-summary {
    width: 100%;
  }

  .pricing-summary {
    padding: 15px;
  }

  .price-line {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .price-line.total {
    font-size: 1rem;
    padding-top: 8px;
    margin-bottom: 15px;
  }

  /* Actions des étapes */
  .step-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ÉDITEUR ===== */
@media (max-width: 480px) {
  .step-item {
    padding: 8px;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .step-title {
    font-size: 0.6rem;
  }

  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .canvas-container {
    padding: 15px;
  }

  .label-canvas {
    width: 210px;
    height: 150px;
  }

  .editor-tools {
    padding: 12px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tool-btn {
    padding: 10px 6px;
    font-size: 0.65rem;
  }

  .tool-icon {
    font-size: 1rem;
  }

  .property-group input,
  .property-group select {
    padding: 5px;
    font-size: 0.75rem;
  }

  .style-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .preview-container {
    padding: 15px;
    min-height: 200px;
  }

  .label-final-preview {
    width: 168px;
    height: 120px;
    transform: scale(0.5);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.5);
  }

  .label-summary {
    width: 72px;
    height: 51px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.2);
  }

  .pricing-summary {
    padding: 12px;
  }

  .price-line {
    font-size: 0.75rem;
  }

  .price-line.total {
    font-size: 0.9rem;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE TRÈS PETITS ÉCRANS ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .product-option {
    min-width: 220px;
    max-width: 250px;
    padding: 15px 10px;
  }

  .product-image {
    height: 140px;
  }

  .product-size {
    font-size: 1.1rem;
  }

  .btn-personalize {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .flavor-categories {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flavor-category {
    height: 80px;
    padding: 5px 8px;
  }

  .flavor-category img {
    width: 50px;
    height: 30px;
    margin-bottom: 5px;
  }

  .flavor-category span {
    font-size: 0.65rem;
  }

  .label-canvas {
    width: 180px;
    height: 130px;
  }

  .tool-btn {
    padding: 8px 4px;
    font-size: 0.6rem;
  }

  .label-final-preview {
    width: 140px;
    height: 100px;
    transform: scale(0.4);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.4);
  }
}

/* ===== MESSAGES D'ALERTE ===== */
.alert {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 500;
  border: 2px solid;
  animation: slideInDown 0.5s ease-out;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
}

.alert p {
  margin: 0;
  font-size: 0.95rem;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FORMULAIRE DE DEMANDE DE DEVIS ===== */
.quote-request-form {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  animation: fadeIn 0.5s ease-out;
}

.quote-request-form .form-container {
  padding: 30px;
}

.quote-request-form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.quote-request-form .form-header h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--aromex-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.btn-back-to-config,
.btn-back-from-quote {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  color: var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back-to-config:hover,
.btn-back-from-quote:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.btn-request-quote {
  background: var(--aromex-blue-hover);
  border: 2px solid var(--aromex-blue-hover);
  color: var(--aromex-black);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-request-quote:hover {
  background: var(--aromex-black);
  border-color: var(--aromex-black);
  color: var(--aromex-white);
  transform: translateY(-2px);
}

/* Sections du formulaire */
.form-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

/* Import des variables globales */
@import url("aromex-variables.css");

/* ===== PAGE MARQUE BLANCHE AROMEX ===== */

.aromex-marqueblanch-page {
  font-family: var(--aromex-font-family-primary);
  color: var(--aromex-black);
  line-height: 1.6;
}

/* ===== SECTION HERO ===== */
.hero-section {
  background: var(--aromex-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/marqueblanch-bg.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-subtitle {
  font-family: var(--aromex-font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

.hero-main-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin: 30px 0 0 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aromex-black);
}

/* ===== SECTION CRÉATION ===== */
.creation-section {
  background: white;
  padding: 80px 0;
  border: 2px solid var(--aromex-black);
}

.creation-section .section-description {
  text-align: center !important;
  width: 100%;
  display: block;
}

.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aromex-black);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.section-description p {
  font-family: var(--aromex-font-family-primary), Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--aromex-black);
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 500;
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
}

/* ===== ÉTAPES DE CRÉATION ===== */
.creation-steps {
  margin: 50px 0;
  text-align: center;
}

.step {
  font-family: var(--aromex-font-family-primary);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.step-number {
  font-size: 1.2rem;
  color: var(--aromex-black);
  min-width: 30px;
}

.step-text {
  font-size: 1rem;
  color: var(--aromex-black);
  text-align: left;
  max-width: 500px;
}

/* ===== SHOWCASE PRODUITS ===== */
.products-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-option {
  text-align: center;
  padding: 30px 10px;
  border-radius: 30px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
  min-width: 250px;
  position: relative;
}

.product-option:hover {
  border-color: var(--aromex-black);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-option:active {
  border-color: var(--aromex-blue-hover);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--aromex-blue-hover);
  color: var(--aromex-white);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-size {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-personalize {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
}

.btn-personalize:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-personalize:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR PRODUIT ===== */
.product-configurator {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.configurator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.configurator-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.configurator-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.configurator-left {
  flex: 1;
  max-width: 400px;
}

.product-preview {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.product-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-description {
  font-family: var(--aromex-font-family-primary);
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 15px;
  color: var(--aromex-black);
  font-weight: 500;
}

.configurator-right {
  flex: 1;
}

.config-section {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section.section-visible {
  display: block !important;
}

.config-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

/* Options de taille */
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.size-btn:hover,
.size-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-packaging {
  font-size: 0.65rem;
  font-weight: 400;
  color: #666;
  opacity: 0.8;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.size-packaging img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.size-btn:hover .size-packaging,
.size-btn.active .size-packaging {
  color: var(--aromex-black);
  opacity: 1;
}

.size-btn:hover .size-packaging img,
.size-btn.active .size-packaging img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Option visuelle personnalisée Aromex */
.visual-custom-aromex {
  border-color: var(--aromex-blue-hover);
  background: rgba(135, 206, 235, 0.1);
}

.visual-custom-aromex:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Options de recette */
.recipe-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recipe-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.recipe-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.recipe-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Catégories de saveurs */
.flavor-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.flavor-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
}

.flavor-category:hover,
.flavor-category.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.flavor-category img {
  width: 85px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.flavor-category span {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Options de saveur */
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flavor-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

/* Options visuelles */
.visual-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-btn {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  min-height: 60px;
}

.visual-btn:hover,
.visual-btn.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.visual-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visual-note {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--aromex-black);
  text-transform: none;
  letter-spacing: normal;
}

.visual-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
}

.visual-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.visual-btn small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
  text-transform: none;
  letter-spacing: normal;
}

/* Actions du configurateur */
.configurator-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-to-cart,
.btn-create-recipe {
  font-family: var(--aromex-font-family-primary);
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid var(--aromex-black);
  min-width: 200px;
}

.btn-add-to-cart {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-add-to-cart:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.btn-create-recipe {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-create-recipe:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-create-recipe:active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

/* ===== RESPONSIVE CONFIGURATEUR ===== */
@media (max-width: 768px) {
  .configurator-content {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visual-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .configurator-actions {
    flex-direction: column;
  }

  .size-options {
    justify-content: center;
  }

  .recipe-options {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .products-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .configurator-content {
    flex-direction: column;
  }

  .configurator-left,
  .configurator-right {
    width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .flavor-category {
    height: 120px;
  }

  .flavor-category img {
    width: 40px;
    height: 40px;
  }

  .flavor-category span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .product-option {
    min-width: 200px;
    padding: 20px 15px;
  }

  .product-image {
    height: 120px;
  }

  .product-size {
    font-size: 1.3rem;
  }
}

/* ===== CRÉATEUR D'ÉTIQUETTES ===== */
.label-creator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.creator-header h2 {
  font-family: var(--aromex-font-family-primary);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back-to-config {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-back-to-config:hover {
  background: var(--aromex-black);
  color: var(--aromex-white);
}

.creator-steps {
  width: 100%;
}

/* Indicateur d'étapes */
.step-indicator {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--aromex-black);
  color: var(--aromex-white);
  border-color: var(--aromex-black);
}

.step-item.completed .step-number {
  background: var(--aromex-blue-hover);
  color: var(--aromex-white);
  border-color: var(--aromex-blue-hover);
}

.step-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--aromex-black);
  transition: color 0.3s ease;
}

.step-item.active .step-title {
  color: var(--aromex-black);
  font-weight: 700;
}

.step-item.completed .step-title {
  color: #666;
}

/* Étapes cliquables pour navigation */
.step-item[style*="cursor: pointer"]:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.step-item[style*="cursor: pointer"]:hover .step-number {
  background-color: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.step-item[style*="cursor: pointer"]:hover .step-title {
  color: var(--aromex-black);
}

/* Contenu des étapes */
.step-content {
  display: none;
  padding: 0;
}

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

.step-content h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Étape 1: Sélection de template */
.template-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.template-option {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.template-option:hover,
.template-option.selected {
  border-color: var(--aromex-black);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-image {
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-preview {
  width: 120px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Thèmes de templates */
.ocean-theme {
  background: linear-gradient(
    135deg,
    #4a90e2 0%,
    var(--aromex-blue-hover) 100%
  );
  color: white;
}

.ocean-theme .label-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ocean-theme .label-company {
  font-size: 0.5rem;
  font-weight: 600;
}

.vintage-theme {
  background: #f5e6d3;
  color: #8b4513;
  padding: 8px;
}

.vintage-theme .label-header {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.vintage-theme .label-icon {
  font-size: 1rem;
  margin: 3px 0;
}

.vintage-theme .label-subtitle,
.vintage-theme .label-contact {
  font-size: 0.35rem;
  margin: 2px 0;
}

.modern-theme {
  background: white;
  color: #333;
  border: 2px solid #4a90e2;
}

.modern-theme .label-logo-big {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 3px;
}

.modern-theme .label-company-name {
  font-size: 0.4rem;
  font-weight: 600;
}

.modern-theme .label-accent {
  width: 30px;
  height: 2px;
  background: #4a90e2;
  margin: 5px auto 0;
}

.template-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.template-size,
.template-price {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.8rem;
  color: #666;
}

.btn-select-template {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-black);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-select-template:hover {
  background: var(--aromex-blue-hover);
}

/* Étape 2: Personnalisation */
.customization-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.live-preview .label-preview {
  width: 280px;
  height: 180px;
  font-size: 1.2rem;
  transform: scale(1.2);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-info h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.preview-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.preview-info li {
  font-family: var(--aromex-font-family-primary);
  padding: 8px 0;
  color: #28a745;
  font-weight: 500;
}

/* Étape 4: Validation panier */
.cart-validation {
  margin-bottom: 30px;
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.summary-preview {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.product-image-summary img {
  width: 160px;
  height: auto;
}

.label-summary {
  width: 100%;
  height: 20%;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
}

/* S'assurer que le contenu cloné garde ses styles dans le résumé aussi */
.label-summary .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.32);
  transform-origin: top left;
}

.label-summary .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-summary .resize-handles {
  display: none !important;
}

.label-summary .canvas-grid {
  display: none !important;
}

.quantity-selection label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.quantity-selection select {
  font-family: var(--aromex-font-family-primary);
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.pricing-summary {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
}

.price-line.total {
  border-top: 2px solid #ddd;
  padding-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Actions des étapes */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-validate {
  font-family: var(--aromex-font-family-primary);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--aromex-black);
  min-width: 150px;
}

.btn-prev {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
}

.btn-next,
.btn-validate {
  background: var(--aromex-black);
  color: white;
}

.btn-next:hover,
.btn-validate:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

/* Responsive créateur d'étiquettes */
@media (max-width: 768px) {
  .label-creator {
    padding: 20px;
  }

  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .creator-header h2 {
    font-size: 1.5rem;
  }

  .template-selection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customization-workspace,
  .final-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

.customization-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--aromex-black);
}

.form-group input[type="text"] {
  font-family: var(--aromex-font-family-primary);
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.color-picker input[type="color"] {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

/* Upload de logo */
.form-group input[type="file"] {
  font-family: var(--aromex-font-family-primary);
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

.form-group small {
  font-family: var(--aromex-font-family-primary);
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* Amélioration des aperçus de logos */
.label-preview img {
  border-radius: 2px;
}

/* Étape 3: Prévisualisation */
.final-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}

.label-final-preview {
  width: 280px;
  height: 200px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  border: 2px solid #333;
  transform: scale(0.75);
}

/* S'assurer que le contenu cloné garde ses styles */
.label-final-preview .canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.75);
  transform-origin: top left;
}

.label-final-preview .canvas-element {
  position: absolute;
  border: none !important;
  box-shadow: none !important;
}

.label-final-preview .resize-handles {
  display: none !important;
}

.label-final-preview .canvas-grid {
  display: none !important;
}

/* ===== ÉDITEUR D'ÉTIQUETTES GÉNÉRIQUE ===== */

.label-editor-workspace {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 30px;
  min-height: 600px;
}

.editor-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas-container {
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  position: sticky;
  top: 55px;
}

.label-canvas {
  width: 370px;
  height: 265px;
  background: white;
  border: 2px solid #333;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.canvas-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.canvas-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.canvas-element {
  position: absolute;
  cursor: move;
  border: 2px solid transparent;
  min-width: 20px;
  min-height: 20px;
  user-select: none;
}

.canvas-element:hover {
  border-color: #007bff;
}

.canvas-element.selected {
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.canvas-element.text-element {
  padding: 2px;
  white-space: nowrap;
}

.canvas-element.image-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canvas-element.shape-element {
  border-radius: 0;
}

/* Poignées de redimensionnement */
.canvas-element.selected::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  cursor: nw-resize;
  z-index: 10;
}

.canvas-element.selected .resize-handles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resize-handle {
  position: absolute;
  background: #ff6b35;
  border: 2px solid white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  pointer-events: all;
  z-index: 10;
}

.resize-handle.top-left {
  top: -4px;
  left: -4px;
  cursor: nw-resize;
}

.resize-handle.top-right {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}

.resize-handle.bottom-left {
  bottom: -4px;
  left: -4px;
  cursor: sw-resize;
}

.resize-handle.bottom-right {
  bottom: -4px;
  right: -4px;
  cursor: se-resize;
}

.resize-handle.top-center {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: n-resize;
}

.resize-handle.bottom-center {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  cursor: s-resize;
}

.resize-handle.left-center {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: w-resize;
}

.resize-handle.right-center {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  cursor: e-resize;
}

.canvas-info {
  display: flex;
  gap: 20px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  color: #666;
}

/* Outils d'édition */
.editor-tools {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.tools-header h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aromex-black);
}

.tool-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.tool-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tool-section h5 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: var(--aromex-black);
}

.tool-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-btn {
  font-family: var(--aromex-font-family-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px 10px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tool-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

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

/* Propriétés des éléments */
.property-group {
  margin-bottom: 15px;
}

.property-group label {
  font-family: var(--aromex-font-family-primary);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--aromex-black);
  margin-bottom: 5px;
}

.property-group input[type="text"],
.property-group input[type="number"],
.property-group select {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.property-group input:focus,
.property-group select:focus {
  outline: none;
  border-color: var(--aromex-black);
}

.property-group input[type="range"] {
  width: 70%;
  margin-right: 10px;
}

.property-group input[type="color"] {
  width: 50px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.style-buttons {
  display: flex;
  gap: 5px;
}

.style-btn {
  font-family: var(--aromex-font-family-primary);
  width: 35px;
  height: 35px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.style-btn:hover,
.style-btn.active {
  background: var(--aromex-black);
  color: white;
  border-color: var(--aromex-black);
}

.position-inputs {
  display: flex;
  gap: 10px;
}

.position-inputs input {
  width: 50%;
}

.size-inputs {
  display: flex;
  gap: 10px;
}

.size-inputs input {
  width: 50%;
}

.property-actions {
  margin-top: 15px;
}

.btn-delete-element {
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  background: #ff4444;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.btn-delete-element:hover {
  background: #cc0000;
}

/* Responsive éditeur */
@media (max-width: 768px) {
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
  }

  .canvas-container {
    padding: 20px;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero-main-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .products-showcase {
    gap: 50px;
  }

  .flavor-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .hero-main-title {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }

  .products-showcase {
    gap: 40px;
  }

  .configurator-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 10px;
  }

  .flavor-options {
    grid-template-columns: repeat(1, 1fr);
  }
  .configurator-left {
    max-width: 100%;
  }

  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .visual-btn {
    width: 100%;
  }

  .configurator-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    min-width: 100%;
  }
}

/* ===== RESPONSIVE TABLETTE ===== */
@media (max-width: 768px) {
  .aromex-marqueblanch-page {
    padding: 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 50vh;
    padding: 40px 0 60px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin: 8px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-description p {
    font-size: 1rem;
    margin: 8px 0;
  }

  .creation-steps {
    margin: 40px 0;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin: 15px 0;
  }

  .step-text {
    text-align: center;
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* Showcase Produits */
  .products-showcase {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
  }

  .product-option {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 25px 20px;
  }

  .product-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .product-size {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .btn-personalize {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }

  .configurator-header,
  .creator-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .btn-back,
  .btn-back-to-config {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .product-preview {
    padding: 20px;
    margin-bottom: 15px;
  }

  .product-description p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .config-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .config-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Options de taille */
  .size-options {
    justify-content: center;
    gap: 8px;
  }

  .size-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 50px;
  }

  /* Options de recette */
  .recipe-options {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .recipe-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .flavor-category {
    padding: 8px 15px;
    height: 120px;
    border-radius: 10px;
  }

  .flavor-category img {
    width: 70px;
    height: 40px;
    margin-bottom: 10px;
  }

  .flavor-category span {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  /* Options visuelles */
  .visual-options {
    gap: 8px;
  }

  .visual-btn {
    padding: 12px;
    min-height: 50px;
  }

  .visual-text {
    font-size: 0.8rem;
  }

  .visual-btn small {
    font-size: 0.65rem;
  }

  .visual-icon {
    font-size: 1.2rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 12px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 40vh;
    padding: 30px 0 50px 0;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin: 5px 0;
  }

  .hero-main-title {
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    margin: 15px 0 0 0;
  }

  /* Section Création */
  .creation-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-description p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .creation-steps {
    margin: 30px 0;
  }

  .step-text {
    font-size: 0.9rem;
  }

  /* Showcase Produits */
  .products-showcase {
    margin: 30px 0;
    gap: 25px;
  }

  .product-option {
    min-width: 250px;
    max-width: 280px;
    padding: 20px 15px;
  }

  .product-image {
    height: 160px;
    margin-bottom: 12px;
  }

  .product-size {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .btn-personalize {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Configurateur */
  .product-configurator,
  .label-creator {
    margin-top: 20px;
    padding: 15px;
  }

  .configurator-title,
  .creator-header h2 {
    font-size: 1.3rem;
  }

  .product-preview {
    padding: 15px;
  }

  .config-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .config-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Options de taille */
  .size-options {
    gap: 6px;
  }

  .size-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 45px;
  }

  /* Options de recette */
  .recipe-options {
    gap: 6px;
    margin-bottom: 12px;
  }

  .recipe-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 70px;
  }

  /* Catégories de saveurs */
  .flavor-categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }

  .flavor-category {
    padding: 6px 10px;
    height: 100px;
    border-radius: 8px;
  }

  .flavor-category img {
    width: 60px;
    height: 35px;
    margin-bottom: 8px;
  }

  .flavor-category span {
    font-size: 0.7rem;
    line-height: 1;
  }

  /* Options visuelles */
  .visual-btn {
    padding: 10px;
    min-height: 45px;
  }

  .visual-text {
    font-size: 0.75rem;
  }

  .visual-btn small {
    font-size: 0.6rem;
  }

  .visual-icon {
    font-size: 1rem;
  }

  /* Actions configurateur */
  .configurator-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn-add-to-cart,
  .btn-create-recipe {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE ÉDITEUR D'ÉTIQUETTES ===== */
@media (max-width: 768px) {
  /* Indicateur d'étapes */
  .step-indicator {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .step-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #ddd;
  }

  .step-item.active {
    background: #e3f2fd;
    border-color: var(--aromex-black);
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .step-title {
    font-size: 0.65rem;
    text-align: left;
    margin: 0;
  }

  /* Contenu des étapes */
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  /* Workspace éditeur */
  .label-editor-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .canvas-container {
    padding: 20px;
    margin-bottom: 15px;
  }

  .label-canvas {
    width: 280px;
    height: 200px;
  }

  .canvas-info {
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    text-align: center;
  }

  /* Outils d'édition */
  .editor-tools {
    padding: 15px;
    order: -1;
  }

  .tools-header h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .tool-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .tool-section h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .tool-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tool-btn {
    padding: 12px 8px;
    font-size: 0.7rem;
  }

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

  /* Propriétés des éléments */
  .property-group {
    margin-bottom: 12px;
  }

  .property-group label {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .property-group input,
  .property-group select {
    padding: 6px;
    font-size: 0.8rem;
  }

  .style-buttons {
    gap: 4px;
  }

  .style-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .position-inputs,
  .size-inputs {
    gap: 8px;
  }

  .btn-delete-element {
    padding: 8px;
    font-size: 0.75rem;
  }

  /* Prévisualisation */
  .final-preview,
  .customization-workspace {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .preview-container {
    padding: 20px;
    min-height: 250px;
  }

  .label-final-preview {
    width: 210px;
    height: 150px;
    transform: scale(0.6);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.6);
  }

  /* Validation panier */
  .product-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .summary-preview {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .product-image-summary img {
    width: 60px;
  }

  .label-summary {
    width: 90px;
    height: 64px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.24);
  }

  .quantity-selection,
  .pricing-summary {
    width: 100%;
  }

  .pricing-summary {
    padding: 15px;
  }

  .price-line {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .price-line.total {
    font-size: 1rem;
    padding-top: 8px;
    margin-bottom: 15px;
  }

  /* Actions des étapes */
  .step-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-width: 100%;
  }
}

/* ===== RESPONSIVE MOBILE ÉDITEUR ===== */
@media (max-width: 480px) {
  .step-item {
    padding: 8px;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .step-title {
    font-size: 0.6rem;
  }

  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .canvas-container {
    padding: 15px;
  }

  .label-canvas {
    width: 210px;
    height: 150px;
  }

  .editor-tools {
    padding: 12px;
  }

  .tool-buttons {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tool-btn {
    padding: 10px 6px;
    font-size: 0.65rem;
  }

  .tool-icon {
    font-size: 1rem;
  }

  .property-group input,
  .property-group select {
    padding: 5px;
    font-size: 0.75rem;
  }

  .style-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .preview-container {
    padding: 15px;
    min-height: 200px;
  }

  .label-final-preview {
    width: 168px;
    height: 120px;
    transform: scale(0.5);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.5);
  }

  .label-summary {
    width: 72px;
    height: 51px;
  }

  .label-summary .canvas-elements {
    transform: scale(0.2);
  }

  .pricing-summary {
    padding: 12px;
  }

  .price-line {
    font-size: 0.75rem;
  }

  .price-line.total {
    font-size: 0.9rem;
  }

  .btn-prev,
  .btn-next,
  .btn-validate {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE TRÈS PETITS ÉCRANS ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .product-option {
    min-width: 220px;
    max-width: 250px;
    padding: 15px 10px;
  }

  .product-image {
    height: 140px;
  }

  .product-size {
    font-size: 1.1rem;
  }

  .btn-personalize {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .flavor-categories {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flavor-category {
    height: 80px;
    padding: 5px 8px;
  }

  .flavor-category img {
    width: 50px;
    height: 30px;
    margin-bottom: 5px;
  }

  .flavor-category span {
    font-size: 0.65rem;
  }

  .label-canvas {
    width: 180px;
    height: 130px;
  }

  .tool-btn {
    padding: 8px 4px;
    font-size: 0.6rem;
  }

  .label-final-preview {
    width: 140px;
    height: 100px;
    transform: scale(0.4);
  }

  .label-final-preview .canvas-elements {
    transform: scale(0.4);
  }
}

/* ===== MESSAGES D'ALERTE ===== */
.alert {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 500;
  border: 2px solid;
  animation: slideInDown 0.5s ease-out;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
}

.alert p {
  margin: 0;
  font-size: 0.95rem;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FORMULAIRE DE DEMANDE DE DEVIS ===== */
.quote-request-form {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  animation: fadeIn 0.5s ease-out;
}

.quote-request-form .form-container {
  padding: 30px;
}

.quote-request-form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aromex-black);
}

.quote-request-form .form-header h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--aromex-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.btn-back-to-config,
.btn-back-from-quote {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  color: var(--aromex-black);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back-to-config:hover,
.btn-back-from-quote:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.btn-request-quote {
  background: var(--aromex-blue-hover);
  border: 2px solid var(--aromex-blue-hover);
  color: var(--aromex-black);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-request-quote:hover {
  background: var(--aromex-black);
  border-color: var(--aromex-black);
  color: var(--aromex-white);
  transform: translateY(-2px);
}

/* Sections du formulaire */
.form-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.form-section h4 {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--aromex-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--aromex-black);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  color: var(--aromex-black);
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  font-family: var(--aromex-font-family-primary);
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--aromex-white);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--aromex-blue-hover);
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Résumé de configuration */
.config-summary {
  background: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  border-radius: 10px;
  padding: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  color: var(--aromex-black);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.summary-value {
  font-family: var(--aromex-font-family-primary);
  font-weight: 500;
  color: #666;
  font-size: 0.9rem;
}

/* Actions du formulaire */
.form-actions {
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #e9ecef;
  margin-top: 30px;
}

.btn-submit-quote {
  background: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  color: var(--aromex-white);
  padding: 15px 40px;
  border-radius: 10px;
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.btn-submit-quote:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(135, 206, 235, 0.4);
}

.form-note {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* Responsive pour le formulaire */
@media (max-width: 768px) {
  .quote-request-form .form-container {
    padding: 20px;
  }

  .quote-request-form .form-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .quote-request-form .form-header h3 {
    font-size: 1.4rem;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .configurator-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-request-quote {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-section {
    padding: 15px;
  }

  .form-section h4 {
    font-size: 1.1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .btn-submit-quote {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Styles pour les options de type de produit */
.product-type-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-type-btn {
  padding: 10px 20px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.product-type-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.product-type-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 4px 8px rgba(135, 206, 235, 0.3);
}

/* Styles pour les options de taux de nicotine */
.nicotine-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nicotine-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.nicotine-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.nicotine-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Styles pour les options de taux PG/VG */
.pgvg-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
}

.pgvg-btn {
  padding: 6px 12px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  min-width: 60px;
  text-align: center;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.pgvg-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.pgvg-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* ===== CONFIGURATEUR DIY ===== */
.diy-configurator {
  background: white;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Options de marques */
.manufacturer-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 15px 0px;
}

.manufacturer-btn {
  padding: 10px 20px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.manufacturer-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.manufacturer-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 4px 8px rgba(135, 206, 235, 0.3);
}

/* Option marque personnalisée */
.custom-brand-option {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  position: relative;
  z-index: 1;
}

/* Sections DIY - assurer un affichage propre */
.config-section[id*="diy-"] {
  display: none;
  position: relative;
  overflow: hidden;
  clear: both;
  margin-bottom: 20px;
}

.config-section[id*="diy-"][style*="block"] {
  display: block !important;
}

/* 🚨 MASQUER LA SECTION MARQUE POUR LES PACKS DIY */
.diy-configurator[data-product-type="pack"] #diy-manufacturer-section,
.diy-configurator[data-product-type="pack-diy"] #diy-manufacturer-section,
#diy-configurator[data-product-type="pack"] #diy-manufacturer-section,
#diy-configurator[data-product-type="pack-diy"] #diy-manufacturer-section {
  display: none !important;
}

/* Forcer la visibilité correcte du bouton custom brand */
#diy-manufacturer-section .custom-brand-option {
  display: block !important;
  position: relative;
  width: 100%;
  clear: both;
}

.btn-custom-brand {
  font-family: var(--aromex-font-family-primary);
  background: var(--aromex-black);
  color: var(--aromex-white);
  border: 2px solid var(--aromex-black);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  min-height: 60px;
}

.btn-custom-brand:hover,
.btn-custom-brand.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-black);
  color: var(--aromex-white);
}

.btn-custom-brand:hover small,
.btn-custom-brand.active small {
  color: var(--aromex-white);
}

.custom-brand-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-white);
  line-height: 1.2;
}

.btn-custom-brand small {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--aromex-white);
  text-transform: none;
  letter-spacing: normal;
}

.btn-custom-brand.active .custom-brand-text {
  color: var(--aromex-white);
}

/* Options de catégories */
.category-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.category-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.category-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
}

/* Grille de produits */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.product-card {
  border: 2px solid var(--aromex-black);
  border-radius: 10px;
  padding: 15px;
  background: var(--aromex-grey-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  background: rgba(135, 206, 235, 0.1);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.product-card.selected {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

.product-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--aromex-black);
}

.product-reference {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.product-price {
  font-weight: bold;
  color: var(--aromex-black);
  font-size: 14px;
}

/* Actions pour l'étape nicotine */
.nicotine-step-actions {
  margin-bottom: 15px;
  text-align: center;
}

.btn-next-step {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--aromex-font-family-primary);
  width: 100%;
  margin-top: 15px;
  text-transform: uppercase;
}

.btn-next-step:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.btn-next-step:active {
  transform: translateY(0);
}

/* Taux de nicotine - Style tableau */
.nicotine-rates {
  padding: 20px;
}

.nicotine-table {
  border: 2px solid var(--aromex-black);
  border-radius: 10px;
  overflow: hidden;
  background: var(--aromex-grey-light);
}

.nicotine-table-header {
  display: flex;
  background: var(--aromex-black);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
}

.nicotine-header-mg {
  flex: 1;
  padding: 15px 20px;
  border-right: 1px solid white;
  text-align: center;
}

.nicotine-header-qty {
  flex: 1;
  padding: 15px 20px;
  text-align: center;
}

.nicotine-table-body {
  background: var(--aromex-grey-light);
}

.nicotine-table-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.nicotine-table-row:hover {
  background: rgba(135, 206, 235, 0.1);
}

.nicotine-table-row:last-child {
  border-bottom: none;
}

.nicotine-mg-cell {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.nicotine-label {
  font-weight: 600;
  font-size: 16px;
  color: var(--aromex-black);
}

.nicotine-qty-cell {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  color: var(--aromex-black);
}

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

.quantity-input {
  width: 80px;
  height: 35px;
  border: 2px solid var(--aromex-black);
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--aromex-black);
  background: white;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 0 0 2px rgba(135, 206, 235, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nicotine-table-header,
  .nicotine-table-row {
    flex-direction: column;
  }

  .nicotine-header-mg,
  .nicotine-header-qty {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nicotine-mg-cell {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
  }

  .nicotine-qty-cell {
    padding: 10px 15px;
  }

  .quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .quantity-input {
    width: 70px;
    height: 30px;
    font-size: 14px;
  }
}

/* Messages de chargement */
.loading-message {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 20px;
}

/* Message de saveur personnalisée */
.custom-flavor-message {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid var(--aromex-black);
}

.custom-flavor-message h4 {
  color: var(--aromex-black);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.custom-flavor-message p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.custom-flavor-btn {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--aromex-font-family-primary);
  text-transform: uppercase;
  font-size: 14px;
}

.custom-flavor-btn:hover,
.custom-flavor-btn.active {
  background: #5fb3d4;
  border-color: var(--aromex-black);
  transform: translateY(-2px);
}

/* Animation d'apparition des sections */
.config-section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.config-section[style*="block"] {
  opacity: 1;
  transform: translateY(0);
}

/* Affichage par défaut visible pour les sections principales - DÉSACTIVÉ POUR SYSTÈME D'ÉTAPES */
/*
.config-section:not(#category-section):not(#products-section):not(#nicotine-section) {
    display: block !important;
    opacity: 1;
}
*/

/* ========================================
   PANIER PERSONNALISÉ FLOTTANT
   ======================================== */

.custom-cart-sidebar {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 420px;
  max-height: 85vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  border-radius: 25px 0 0 0;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  font-family: var(--aromex-font-family-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  transform-origin: bottom right;
}

.custom-cart-sidebar.collapsed {
  width: 70px;
  height: 70px;
  border-radius: 35px 0 0 0;
  background: linear-gradient(
    135deg,
    var(--aromex-blue-hover) 0%,
    #5fb3d4 100%
  );
  border: 3px solid var(--aromex-black);
}

/* Header du panier */
.cart-header {
  padding: 7px 12px;
  background: linear-gradient(
    135deg,
    var(--aromex-grey-light) 0%,
    #e9ecef 100%
  );
  border-bottom: 2px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 25px 0 0 0;
  position: relative;
}

.cart-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--aromex-blue-hover) 0%,
    #5fb3d4 50%,
    #4ea5c7 100%
  );
}

.cart-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--aromex-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bouton toggle moderne */
.cart-toggle {
  background: linear-gradient(
    135deg,
    var(--aromex-blue-hover) 0%,
    #5fb3d4 100%
  );
  border: 3px solid var(--aromex-black);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
}

.cart-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #5fb3d4 0%, #4ea5c7 100%);
  box-shadow: 0 6px 25px rgba(135, 206, 235, 0.6);
}

.cart-toggle:active {
  transform: scale(0.95);
}

.cart-icon {
  font-size: 24px;
  color: var(--aromex-black);
  font-weight: bold;
}

/* Badge du compteur moderne */
.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: white;
  border-radius: 50%;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
  animation: pulse 2s infinite;
}

/* Contenu du panier */
.cart-content {
  max-height: calc(85vh - 140px);
  overflow-y: auto;
  padding: 20px 25px;
  scrollbar-width: thin;
  scrollbar-color: var(--aromex-blue-hover) #f1f3f4;
}

.cart-content::-webkit-scrollbar {
  width: 6px;
}

.cart-content::-webkit-scrollbar-track {
  background: #f1f3f4;
  border-radius: 3px;
}

.cart-content::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--aromex-blue-hover) 0%,
    #5fb3d4 100%
  );
  border-radius: 3px;
}

.custom-cart-sidebar.collapsed .cart-content {
  display: none;
}

.custom-cart-sidebar.collapsed .cart-header h3 {
  display: none;
}

/* Panier vide moderne */
.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}

.empty-cart::before {
  content: "🛒";
  display: block;
  font-size: 48px;
  margin-bottom: 15px;
}

.empty-cart p {
  margin: 0 0 8px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--aromex-black);
}

.empty-cart small {
  color: #6c757d;
  font-size: 14px;
}

/* Items du panier redesignés */
.cart-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cart-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aromex-blue-hover) 0%, #5fb3d4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cart-item:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

.cart-item:hover::before {
  transform: scaleX(1);
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cart-item-name {
  font-weight: 700;
  color: var(--aromex-black);
  font-size: 15px;
  line-height: 1.3;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.cart-item-remove {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  margin-left: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.cart-item-remove:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
}

.cart-item-details {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.4;
}

.cart-item-details span {
  display: block;
  margin-bottom: 4px;
  padding: 2px 0;
}

.cart-item-details strong {
  color: var(--aromex-black);
  font-weight: 600;
}

/* Contrôles de quantité modernisés */
.cart-item-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 6px 12px;
  border: 2px solid #e9ecef;
}

.quantity-btn {
  background: linear-gradient(135deg, var(--aromex-black) 0%, #333 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.quantity-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #333 0%, #555 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.quantity-input {
  width: 60px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--aromex-black);
  padding: 8px 4px;
}

.cart-item-price {
  text-align: right;
  font-weight: 700;
  font-size: 16px;
  color: var(--aromex-black);
  background: linear-gradient(
    135deg,
    var(--aromex-blue-hover) 0%,
    #5fb3d4 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Résumé du panier */
.cart-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 18px;
  padding: 20px;
  margin: 20px 0;
  border: 2px solid #dee2e6;
  position: relative;
  overflow: hidden;
}

.cart-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--aromex-blue-hover) 0%,
    #5fb3d4 50%,
    #4ea5c7 100%
  );
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

.summary-line.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #dee2e6;
  font-size: 18px;
  font-weight: 800;
  color: var(--aromex-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-line.total span:last-child {
  background: linear-gradient(
    135deg,
    var(--aromex-blue-hover) 0%,
    #5fb3d4 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
}

/* Actions du panier modernisées */
.cart-actions {
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 2px solid #dee2e6;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 0 0 25px 25px;
}

/* Style unifié pour tous les boutons du panier avec flex renforcé */
.btn-quote,
.btn-validate {
  padding: 18px 30px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--aromex-font-family-primary);
  min-height: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid transparent;
  flex-shrink: 0;
  width: 100%;
}

/* Bouton Demander un devis */
.btn-quote {
  background: linear-gradient(
    135deg,
    var(--aromex-grey-light) 0%,
    #f8f9fa 50%,
    #e9ecef 100%
  );
  color: var(--aromex-black);
  position: relative;
  border: 2px solid var(--aromex-black);
  display: flex !important;
}

.btn-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--aromex-grey-light) 0%,
    #f8f9fa 50%,
    #e9ecef 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.btn-quote::after {
  content: "💬";
  position: absolute;
  left: 25px;
  font-size: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-quote span {
  position: relative;
  z-index: 2;
  margin-left: 15px;
  display: flex;
  align-items: center;
}

/* Bouton Valider & Payer */
.btn-validate {
  background: linear-gradient(
    135deg,
    var(--aromex-black) 0%,
    #333 50%,
    #555 100%
  );
  color: white;
  position: relative;
  border: 2px solid var(--aromex-black);
  display: flex !important;
}

.btn-validate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--aromex-grey-light) 0%,
    #f8f9fa 50%,
    #e9ecef 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.btn-validate::after {
  content: "🛒";
  position: absolute;
  left: 25px;
  font-size: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-validate span {
  position: relative;
  z-index: 2;
  margin-left: 15px;
  display: flex;
  align-items: center;
}

.btn-validate:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(135, 206, 235, 0.4);
  border-color: var(--aromex-blue-hover);
  color: var(--aromex-black);
}

.btn-validate:hover::before {
  opacity: 1;
}

.btn-validate:active {
  transform: translateY(-1px) scale(0.98);
}

/* Effet de brillance au survol */
.btn-quote:hover::after,
.btn-validate:hover::after {
  animation: bounce 0.6s ease infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-2px) scale(1.1);
  }
}

/* Animation de chargement pour les boutons */
.btn-quote.loading,
.btn-validate.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-quote.loading::after,
.btn-validate.loading::after {
  content: "⏳";
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Informations de conditionnement améliorées */
.quantity-info {
  margin-top: 12px;
  padding: 12px;
  background: linear-gradient(
    135deg,
    var(--aromex-blue-hover)-100%,
    #e3f2fd 100%
  );
  border-radius: 12px;
  border-left: 4px solid var(--aromex-blue-hover);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quantity-info small {
  color: #5d4e75;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.quantity-info small:last-child {
  font-weight: 600;
  color: var(--aromex-black);
}

/* Responsive pour le nouveau design */
@media (max-width: 768px) {
  .custom-cart-sidebar {
    width: 100%;
    max-width: 380px;
    right: 10px;
    border-radius: 20px 0 0 0;
  }

  .custom-cart-sidebar.collapsed {
    width: 60px;
    height: 60px;
    border-radius: 30px 0 0 0;
    right: 15px;
  }

  .cart-toggle {
    width: 50px;
    height: 50px;
  }

  .cart-icon {
    font-size: 20px;
  }

  .cart-count {
    width: 24px;
    height: 24px;
    font-size: 11px;
    top: -8px;
    right: -8px;
  }

  .cart-header,
  .cart-content,
  .cart-actions {
    padding: 15px 20px;
  }

  .cart-item {
    padding: 15px;
  }

  .cart-item-name {
    font-size: 14px;
  }

  .quantity-controls {
    gap: 8px;
    padding: 4px 8px;
  }

  .quantity-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .btn-quote,
  .btn-validate {
    padding: 15px 25px;
    font-size: 15px;
    min-height: 55px;
    letter-spacing: 0.8px;
    display: flex !important;
  }

  .btn-quote::after,
  .btn-validate::after {
    left: 20px;
    font-size: 18px;
  }

  .btn-quote span,
  .btn-validate span {
    margin-left: 12px;
  }
}

@media (max-width: 480px) {
  .btn-quote,
  .btn-validate {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 50px;
    letter-spacing: 0.5px;
    display: flex !important;
  }

  .btn-quote::after,
  .btn-validate::after {
    left: 15px;
    font-size: 16px;
  }

  .btn-quote span,
  .btn-validate span {
    margin-left: 10px;
  }
}
.cart-item-details strong {
  color: var(--aromex-black);
  font-weight: 600;
}

.quantity-info {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}

.quantity-info small {
  display: block;
  line-height: 1.4;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--aromex-black);
  margin-top: 10px;
}

.quantity-input-group {
  margin-bottom: 1.5rem;
}

.quantity-info {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.quantity-info small {
  display: block;
  color: #495057;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.quantity-info small:last-child {
  margin-bottom: 0;
  color: #0d6efd;
  font-weight: 500;
}

.custom-cart-product {
  position: relative;
  padding: 15px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.custom-cart-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 8px 0 0 8px;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.custom-cart-product:hover {
  transform: translateX(5px);
  box-shadow: 3px 0px 10px var(--aromex-blue-hover);
}

.custom-cart-product:hover::before {
  opacity: 1;
}

.quantity-selection {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-top: 20px;
}

.quantity-input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.quantity-input-group h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--aromex-black);
  margin: 0;
  letter-spacing: 0.5px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--aromex-black);
  color: white;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: #333;
  transform: scale(1.05);
}

.quantity-controls input[type="number"] {
  flex: 1;
  border: none;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--aromex-black);
  width: 100px;
  padding: 5px;
}

.quantity-controls input[type="number"]:focus {
  outline: none;
}

/* Cacher les flèches du input number */
.quantity-controls input[type="number"]::-webkit-inner-spin-button,
.quantity-controls input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-pricing {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-info span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #666;
}

.pricing-info .total-price {
  font-size: 18px;
  color: var(--aromex-black);
  font-weight: 500;
}

.pricing-info strong {
  font-weight: 600;
  color: var(--aromex-black);
}

.discount-info {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

.discount-text {
  color: var(--aromex-blue-hover);
  font-weight: 500;
}

@media (max-width: 768px) {
  .quantity-selection {
    padding: 20px;
  }

  .quantity-controls {
    gap: 10px;
  }

  .quantity-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .quantity-controls input[type="number"] {
    font-size: 20px;
    width: 80px;
  }
}

@media (max-width: 480px) {
  .quantity-selection {
    padding: 15px;
  }

  .quantity-input-group h4 {
    font-size: 16px;
  }

  .quantity-controls {
    padding: 8px;
  }

  .quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .quantity-controls input[type="number"] {
    font-size: 18px;
    width: 60px;
  }
}

/* Grille des catégories de saveurs personnalisées */
.custom-flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
}

.custom-flavor-grid .custom-flavor-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-align: center;
}

.custom-flavor-grid .custom-flavor-btn:hover {
  transform: translateY(-5px);
}

.custom-flavor-grid .custom-flavor-btn.active {
  transform: translateY(-5px);
}

.custom-flavor-grid .custom-flavor-btn img {
  width: 50px;
  height: 45px;
  border-radius: 50%;
  background-color: #f5f5f5;
  padding: 15px;
  margin-bottom: 10px;
  transition: background-color 0.2s ease;
}

.custom-flavor-grid .custom-flavor-btn:hover img {
  background-color: #e0e0e0;
}

.custom-flavor-grid .custom-flavor-btn.active img {
  background-color: #e0e0e0;
}

.flavor-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  margin-top: 8px;
}

.custom-flavor-message {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.custom-flavor-message h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.custom-flavor-message p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .custom-flavor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }

  .custom-flavor-grid .custom-flavor-btn img {
    width: 50px;
    height: 50px;
    padding: 12px;
  }

  .flavor-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .custom-flavor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .custom-flavor-grid .custom-flavor-btn img {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .flavor-label {
    font-size: 11px;
  }
}

/* === STYLES POUR LES INDICATEURS DE SPECIFIC_PRICE === */

.specific-price-current {
  margin: 8px 0 5px 0;
}

.discount-active {
  background: linear-gradient(135deg, var(--aromex-blue-hover), #45a049);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
  }
}

.specific-price-next {
  margin: 8px 0 5px 0;
}

.discount-progress {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  background: #e9ecef;
  border-radius: 10px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 6px;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  background: linear-gradient(90deg, #45b7d1, #6fcff4, #9fe5ff);
  height: 100%;
  border-radius: 10px;
  transition: width 0.8s ease;
  position: relative;
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(100%);
  }
}

.discount-progress small {
  color: #666;
  font-size: 11px;
  font-weight: 500;
  display: block;
  text-align: center;
}

/* Styles responsive pour les indicateurs */
@media (max-width: 768px) {
  .discount-active {
    padding: 3px 8px;
    font-size: 10px;
  }

  .progress-bar {
    height: 8px;
  }

  .discount-progress {
    padding: 6px;
  }

  .discount-progress small {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .specific-price-current,
  .specific-price-next {
    margin: 6px 0 4px 0;
  }

  .discount-active {
    padding: 2px 6px;
    font-size: 9px;
    border-radius: 12px;
  }

  .progress-bar {
    height: 6px;
    margin-bottom: 4px;
  }

  .discount-progress {
    padding: 4px;
  }

  .discount-progress small {
    font-size: 9px;
  }
}

/* === STYLES POUR LES PALIERS DE SPECIFIC_PRICE === */

.specific-price-tiers {
  margin: 15px 0;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tiers-header {
  text-align: center;
  margin-bottom: 20px;
}

.tiers-header h5 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}

.tiers-header small {
  color: #6c757d;
  font-size: 11px;
}

.tiers-container {
  position: relative;
  height: 80px;
  margin: 0 20px;
}

.tier-item {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}

.tier-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tier-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6c757d;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.tier-item.active .tier-dot {
  background: #28a745;
  animation: pulse-success 2s infinite;
}

.tier-item.next .tier-dot {
  background: #ffc107;
  animation: pulse-warning 1.5s infinite;
}

@keyframes pulse-success {
  0% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

@keyframes pulse-warning {
  0% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 193, 7, 0.7);
  }
  70% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 6px rgba(255, 193, 7, 0);
  }
  100% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

.tier-line {
  width: 2px;
  height: 15px;
  background: #6c757d;
  margin-top: 2px;
}

.tier-item.active .tier-line {
  background: #28a745;
}

.tier-item.next .tier-line {
  background: #ffc107;
}

.tier-info {
  text-align: center;
  margin-top: 5px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 50px;
}

.tier-quantity {
  font-size: 11px;
  font-weight: 600;
  color: #495057;
  line-height: 1;
}

.tier-discount {
  font-size: 10px;
  color: #28a745;
  font-weight: 500;
  line-height: 1;
}

.tier-check {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  animation: check-bounce 0.6s ease;
}

@keyframes check-bounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.tier-current {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: 4;
}

.current-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.current-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #007bff;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
  animation: current-pulse 1.5s infinite;
}

@keyframes current-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.current-line {
  width: 3px;
  height: 18px;
  background: #007bff;
  margin-top: 2px;
}

.current-info {
  text-align: center;
  margin-top: 5px;
  padding: 4px 6px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 6px;
  border: 1px solid #007bff;
  min-width: 50px;
}

.current-quantity {
  font-size: 11px;
  font-weight: bold;
  color: #007bff;
  line-height: 1;
}

.current-label {
  font-size: 9px;
  color: #007bff;
  font-weight: 500;
  line-height: 1;
}

.tiers-progress-track {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  z-index: 1;
}

.tiers-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 3px;
  transition: width 0.8s ease;
  position: relative;
}

.tiers-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
  border-radius: 3px;
}

.tiers-scale {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #6c757d;
  z-index: 2;
}

/* Styles responsive pour les paliers */
@media (max-width: 768px) {
  .specific-price-tiers {
    margin: 10px 0;
    padding: 10px;
  }

  .tiers-container {
    height: 70px;
    margin: 0 10px;
  }

  .tier-dot {
    width: 10px;
    height: 10px;
  }

  .current-dot {
    width: 12px;
    height: 12px;
  }

  .tier-info,
  .current-info {
    padding: 2px 4px;
    min-width: 40px;
  }

  .tier-quantity,
  .current-quantity {
    font-size: 10px;
  }

  .tier-discount {
    font-size: 9px;
  }

  .current-label {
    font-size: 8px;
  }

  .tiers-scale {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .specific-price-tiers {
    margin: 8px 0;
    padding: 8px;
  }

  .tiers-header h5 {
    font-size: 13px;
  }

  .tiers-header small {
    font-size: 10px;
  }

  .tiers-container {
    height: 60px;
    margin: 0 5px;
  }

  .tier-dot {
    width: 8px;
    height: 8px;
  }

  .current-dot {
    width: 10px;
    height: 10px;
  }

  .tier-line,
  .current-line {
    height: 12px;
  }

  .tier-info,
  .current-info {
    padding: 2px 3px;
    min-width: 35px;
  }

  .tier-quantity,
  .current-quantity {
    font-size: 9px;
  }

  .tier-discount {
    font-size: 8px;
  }

  .current-label {
    font-size: 7px;
  }

  .tiers-scale {
    font-size: 8px;
  }
}

/* === STYLES POUR LES PALIERS PRINCIPAUX (SECTION QUANTITÉ) === */

.main-specific-price-tiers {
  margin: 25px 0;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  border: 1px solid rgba(var(--aromex-blue-hover-rgb), 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.main-specific-price-tiers:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.main-tiers-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.main-tiers-header span {
  font-size: 16px;
  font-weight: 600;
  color: var(--aromex-blue-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
}

.main-tiers-header span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--aromex-blue-hover);
  border-radius: 2px;
}

.main-tiers-container {
  position: relative;
  height: 80px;
  margin: 0 15px;
  padding: 10px 0;
}

.main-tiers-track {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.main-tiers-progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--aromex-blue-hover),
    var(--aromex-blue)
  );
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.main-tiers-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 2s infinite linear;
}

.main-tier-marker {
  position: absolute;
  top: 15px;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-tier-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #9e9e9e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.main-tier-marker.active .main-tier-dot {
  border-color: var(--aromex-blue-hover);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(var(--aromex-blue-hover-rgb), 0.2);
}

.main-tier-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  padding: 6px 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 60px;
  opacity: 0.8;
}

.main-tier-marker:hover .main-tier-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.main-tier-qty {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 2px;
}

.main-tier-discount {
  display: block;
  font-size: 14px;
  color: var(--aromex-blue-hover);
  font-weight: 700;
}

.main-current-marker {
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  z-index: 4;
}

.main-current-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--aromex-blue-hover);
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(var(--aromex-blue-hover-rgb), 0.3);
  margin: 0 auto;
  animation: pulse 2s infinite;
}

.main-current-label {
  background: var(--aromex-blue-hover);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 40px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(var(--aromex-blue-hover-rgb), 0.3);
}

.main-tiers-scale {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  color: #666;
  font-size: 12px;
  font-weight: 500;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--aromex-blue-hover-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(var(--aromex-blue-hover-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--aromex-blue-hover-rgb), 0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .main-specific-price-tiers {
    margin: 20px 0;
    padding: 15px;
  }

  .main-tiers-header span {
    font-size: 14px;
  }

  .main-tier-dot {
    width: 14px;
    height: 14px;
  }

  .main-current-dot {
    width: 18px;
    height: 18px;
  }

  .main-tier-label {
    padding: 4px 8px;
    min-width: 50px;
  }

  .main-tier-qty {
    font-size: 11px;
  }

  .main-tier-discount {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .main-specific-price-tiers {
    margin: 15px 0;
    padding: 12px;
  }

  .main-tiers-header span {
    font-size: 13px;
  }

  .main-tier-dot {
    width: 12px;
    height: 12px;
  }

  .main-current-dot {
    width: 16px;
    height: 16px;
  }

  .main-tier-label {
    padding: 3px 6px;
    min-width: 45px;
  }

  .main-tier-qty {
    font-size: 10px;
  }

  .main-tier-discount {
    font-size: 12px;
  }

  .main-tiers-scale {
    font-size: 10px;
  }
}

.rush-mode-active {
  border-left: 4px solid #ff4757;
  background-color: rgba(255, 71, 87, 0.05);
}

.rush-label {
  background-color: #ff4757;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 8px;
}

.rush-mode-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-top: 8px;
}

.rush-mode-toggle input[type="checkbox"] {
  margin-right: 8px;
}

.rush-mode-label {
  font-size: 14px;
  color: #666;
}

.rush-mode-toggle:hover .rush-mode-label {
  color: #ff4757;
}

.rush-mode-active .cart-item-price {
  color: #ff4757;
}

@media (max-width: 768px) {
  .rush-mode-toggle {
    flex-direction: column;
    align-items: flex-start;
  }

  .rush-mode-label {
    margin-top: 4px;
  }
}

.cart-notification {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--aromex-blue-hover);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 1001;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.diy-configurator .config-section.section-visible {
  display: block;
}

.no-templates-message {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  color: #6c757d;
  font-size: 14px;
  margin: 10px 0;
}

/* Grille des sous-catégories */
.sub-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.sub-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 100px;
  width: 100%;
  box-sizing: border-box;
}

.sub-category-card:hover,
.sub-category-card.selected {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
}

.sub-category-name {
  font-family: var(--aromex-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aromex-black);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .sub-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sub-category-card {
    height: 80px;
    padding: 10px 15px;
  }

  .sub-category-name {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sub-categories-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Modale de demande de recette personnalisée */
.custom-recipe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

.custom-recipe-modal.show {
  display: flex;
}

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

.modal-content {
  position: relative;
  background: var(--aromex-white);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  padding: 40px;
  animation: slideInUp 0.3s ease-out;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.modal-header h3 {
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--aromex-grey-dark);
  font-family: var(--aromex-font-family-primary);
  font-size: 16px;
  margin-bottom: 20px;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--aromex-black);
  color: var(--aromex-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
  background: var(--aromex-blue-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(111, 207, 244, 0.4);
}

.btn-submit-recipe {
  background: var(--aromex-black);
  color: var(--aromex-white);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--aromex-font-family-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.btn-submit-recipe:hover {
  background: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111, 207, 244, 0.3);
}

.btn-submit-recipe:active {
  transform: translateY(0);
}

.custom-recipe-modal .form-section {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--aromex-grey-light);
  border-radius: 8px;
  border-left: 4px solid var(--aromex-blue-hover);
}

.custom-recipe-modal .form-section h4 {
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.custom-recipe-modal .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
  font-weight: 600;
  font-size: 14px;
}

.custom-recipe-modal .form-group input,
.custom-recipe-modal .form-group textarea,
.custom-recipe-modal .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--aromex-grey-light);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--aromex-font-family-primary);
  transition: all 0.3s ease;
  background: var(--aromex-white);
  color: var(--aromex-black);
}

.custom-recipe-modal .form-group input:focus,
.custom-recipe-modal .form-group textarea:focus,
.custom-recipe-modal .form-group select:focus {
  outline: none;
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 0 0 3px rgba(111, 207, 244, 0.1);
}

.custom-recipe-modal .form-note {
  background: var(--aromex-grey-light);
  border: 1px solid var(--aromex-blue-hover);
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.custom-recipe-modal .form-note p {
  margin: 0;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
  font-size: 14px;
}

/* Nouveaux styles pour l'interface de téléversement */
.creator-content {
  max-width: 1200px;
  margin: 0 auto;
}

.upload-section {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.upload-header {
  text-align: center;
  margin-bottom: 40px;
}

.upload-header h3 {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
}

.upload-header p {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 10px;
  line-height: 1.6;
}

.upload-note {
  font-size: 14px;
  color: #95a5a6;
  font-style: italic;
}

.upload-categories {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.upload-category {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.upload-category:hover {
  border-color: #3498db;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: flex-start !important;
  text-align: left !important;
  width: 100%;
}

.upload-category .category-header {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.category-info {
  text-align: left !important;
  flex: 1;
}

.category-info h4,
.category-info p,
.category-info small {
  text-align: left !important;
  margin-left: 0 !important;
}

.category-icon {
  font-size: 32px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-info h4 {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 8px;
}

.category-info p {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 8px;
  line-height: 1.5;
}

.category-info small {
  font-size: 12px;
  color: #95a5a6;
  background: white;
  padding: 4px 8px;
  border-radius: 4px;
}

.upload-zone {
  position: relative;
  border: 2px dashed #bdc3c7;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-zone:hover {
  border-color: #3498db;
  background: #f7fbff;
}

.upload-zone.dragover {
  border-color: #e74c3c;
  background: #fff5f5;
}

.upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder {
  pointer-events: none;
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: #bdc3c7;
}

.upload-zone:hover .upload-icon {
  color: #3498db;
}

.upload-placeholder p {
  font-size: 16px;
  color: #7f8c8d;
  margin: 0;
}

.upload-link {
  color: #3498db;
  font-weight: 600;
  text-decoration: underline;
}

.uploaded-files {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.uploaded-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-icon {
  font-size: 20px;
}

.file-details {
  display: flex;
  flex-direction: column;
}

.file-name {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

.file-size {
  font-size: 12px;
  color: #95a5a6;
}

.file-remove {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
}

.file-remove:hover {
  background: #c0392b;
}

.notes-section {
  position: relative;
}

.notes-section textarea {
  width: 100%;
  min-height: 150px;
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
  font-family: inherit;
  box-sizing: border-box;
}

.notes-section textarea:focus {
  outline: none;
  border-color: #3498db;
}

.character-count {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 12px;
  color: #95a5a6;
  background: white;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Styles pour les images réutilisées */
.file-preview.preloaded {
  position: relative;
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 10px;
  background: #f8fff9;
  margin-bottom: 10px;
}

.file-preview.preloaded:hover {
  border-color: #20c997;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.preloaded-indicator {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #28a745;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  z-index: 10;
}

.file-preview-remove {
  transition: all 0.2s ease;
}

.file-preview-remove:hover {
  background: #c0392b !important;
  transform: scale(1.1);
}

/* Amélioration de l'affichage des previews */
.file-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.file-preview {
  position: relative;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 8px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 150px;
}

.file-preview img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.file-preview-info {
  margin-top: 8px;
  text-align: center;
}

.file-preview-name {
  font-size: 12px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2px;
  word-break: break-word;
}

.file-preview-size {
  font-size: 10px;
  color: #95a5a6;
}

.process-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-icon {
  font-size: 28px;
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content {
  flex: 1;
}

.info-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .process-info {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 20px;
  }

  .info-icon {
    font-size: 24px;
    padding: 12px;
  }

  .info-content h5 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .info-card {
    padding: 15px;
  }

  .info-icon {
    font-size: 20px;
    padding: 10px;
  }

  .info-content h5 {
    font-size: 15px;
  }

  .info-content p {
    font-size: 13px;
  }
}

.file-preview-container {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #e5e5e5;
}

.file-preview {
  position: relative;
  width: 150px;
  height: 150px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}

.file-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.file-preview .file-preview-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  font-size: 12px;
  text-align: center;
}

.file-preview .file-preview-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.file-preview .file-preview-size {
  font-size: 10px;
  opacity: 0.8;
}

.file-preview .file-preview-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 48px;
  color: #666;
}

.file-preview:hover {
  border-color: #007bff;
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.file-preview .file-preview-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #dc3545;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.file-preview:hover .file-preview-remove {
  opacity: 1;
}

.file-preview .file-preview-remove:hover {
  background: #dc3545;
  color: white;
}

@media (max-width: 768px) {
  .file-preview {
    width: 120px;
    height: 120px;
  }

  .file-preview-info {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .file-preview {
    width: 100px;
    height: 100px;
  }

  .file-preview-container {
    justify-content: center;
  }
}

/* ===== NOUVELLE ÉTAPE : SÉLECTION DU PRODUIT (10ML) ===== */

.filtered-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
  width: 100%;
}

.filtered-product-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 2px solid var(--aromex-black);
  border-radius: 15px;
  background: var(--aromex-grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  min-height: 120px;
  width: 100%;
  box-sizing: border-box;
}

.filtered-product-card:hover,
.filtered-product-card.selected {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  justify-content: space-between;
}

.product-name {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--aromex-black);
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.product-description {
  font-size: 0.9rem;
  color: var(--aromex-grey-dark);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.product-price {
  font-family: var(--aromex-font-family-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--aromex-blue);
  margin-top: auto;
  text-align: right;
}

.product-selection-actions {
  margin-top: 20px;
  text-align: center;
}

.section-description {
  font-size: 0.95rem;
  color: var(--aromex-grey-dark);
  margin: 10px 0 20px 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .filtered-products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .filtered-product-card {
    padding: 15px;
    min-height: 100px;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .filtered-product-card {
    padding: 12px;
    min-height: 90px;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .product-description {
    font-size: 0.8rem;
  }

  .product-price {
    font-size: 0.9rem;
  }
}

/* ===== SECTION MES CRÉATIONS FAVORITES ===== */

.my-favorites-section {
  margin: 60px 0;
  padding: 40px 0;
  background: var(--aromex-light-gray);
  border-radius: 12px;
  position: relative;
  z-index: 1;
  clear: both;
  order: 9999; /* Force en dernière position */
}

.my-favorites-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.my-favorites-section .section-header h3 {
  font-family: var(--aromex-font-family-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--aromex-black);
  margin-bottom: 10px;
}

.my-favorites-section .section-header p {
  color: var(--aromex-gray);
  font-size: 1.1rem;
  margin: 0;
}

.favorites-toggle {
  text-align: center;
  margin-bottom: 30px;
}

.favorites-toggle .btn {
  background: var(--aromex-primary);
  color: white;
  border: 2px solid var(--aromex-primary);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.favorites-toggle .btn:hover {
  background: white;
  color: var(--aromex-primary);
  transform: translateY(-2px);
}

.favorites-content {
  padding: 0 20px;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.favorite-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.favorite-card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--aromex-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.favorite-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.favorite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--aromex-primary);
}

.favorite-card-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 15px;
}

.favorite-card-title {
  font-family: var(--aromex-font-family-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--aromex-black);
  margin: 0;
  flex: 1;
}

.favorite-card-badge {
  background: var(--aromex-primary);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.favorite-card-details {
  margin-bottom: 20px;
}

.favorite-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 5px 0;
}

.favorite-detail-label {
  font-weight: 600;
  color: var(--aromex-gray);
  font-size: 0.9rem;
}

.favorite-detail-value {
  color: var(--aromex-black);
  font-weight: 500;
  text-align: right;
  font-size: 0.9rem;
}

.favorite-card-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px;
  background: var(--aromex-light-gray);
  border-radius: 8px;
}

.favorite-stat {
  text-align: center;
}

.favorite-stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--aromex-primary);
  display: block;
}

.favorite-stat-label {
  font-size: 0.8rem;
  color: var(--aromex-gray);
  font-weight: 500;
}

.favorite-card-actions {
  display: flex;
  gap: 10px;
}

.btn-reorder {
  background: var(--aromex-primary);
  color: white;
  border: 2px solid var(--aromex-primary);
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  flex: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-reorder:hover {
  background: white;
  color: var(--aromex-primary);
  transform: translateY(-1px);
}

.btn-reorder:active {
  transform: translateY(0);
}

.btn-view-details {
  background: white;
  color: var(--aromex-gray);
  border: 2px solid var(--aromex-light-gray);
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-view-details:hover {
  border-color: var(--aromex-primary);
  color: var(--aromex-primary);
}

.loading-favorites {
  text-align: center;
  padding: 40px;
  color: var(--aromex-gray);
}

.no-favorites {
  text-align: center;
  padding: 60px 20px;
  color: var(--aromex-gray);
}

.no-favorites h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--aromex-black);
}

.no-favorites p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.no-favorites .btn {
  background: var(--aromex-primary);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.no-favorites .btn:hover {
  background: var(--aromex-secondary);
  transform: translateY(-2px);
}

/* Responsive pour "Mes créations" */
@media (max-width: 768px) {
  .favorites-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .favorite-card {
    padding: 20px;
  }

  .favorite-card-actions {
    flex-direction: column;
  }

  .favorite-card-stats {
    flex-direction: column;
    gap: 10px;
  }

  .my-favorites-section .section-header h3 {
    font-size: 1.8rem;
  }
}

/* Styles pour la section PG/VG automatique 50ml */
.pgvg-auto-selection {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.selected-pgvg-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pgvg-label {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

.pgvg-value {
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
}

.pgvg-value.detected {
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}

.pgvg-value.not-detected {
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

.pgvg-step-actions {
  margin-top: 20px;
  text-align: center;
}

.pgvg-step-actions .btn-next-step {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pgvg-step-actions .btn-next-step:hover {
  background: linear-gradient(135deg, #218838, #1ea080);
  transform: translateY(-2px);
}

/* Styles pour la sélection de taux PG/VG 50ml */
.pgvg-rates-selection {
  margin: 20px 0;
}

.rates-description {
  font-size: 16px;
  color: #495057;
  margin-bottom: 15px;
  text-align: center;
}

.pgvg-rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.pgvg-rate-btn {
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pgvg-rate-btn:hover {
  border-color: #28a745;
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
}

.pgvg-rate-btn.selected {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border-color: #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.pgvg-rate-btn.selected:hover {
  background: linear-gradient(135deg, #218838, #1ea080);
}

.no-pgvg-rates {
  background: #f8d7da;
  border: 2px solid #f5c6cb;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.no-pgvg-rates .error-message {
  font-size: 16px;
  font-weight: 600;
  color: #721c24;
  margin-bottom: 10px;
}

.no-pgvg-rates .error-description {
  font-size: 14px;
  color: #721c24;
  margin: 0;
}

/* ===== FIX CENTRAGE SECTION DESCRIPTION ===== */
/* Force le centrage des textes de description de la section création */
.creation-section .section-header .section-description,
.creation-section .section-description,
section.creation-section .section-description {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.creation-section .section-header .section-description p,
.creation-section .section-description p,
section.creation-section .section-description p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

/* ========================================
   STYLES BOOSTER - 5 ÉTAPES
   ======================================== */

/* Grid pour les types de boosters */
.booster-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.booster-type-btn {
  padding: 10px 20px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.booster-type-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.booster-type-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 4px 8px rgba(111, 207, 244, 0.3);
}

.booster-type-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

/* Grid pour les ratios PG/VG des boosters */
.booster-pgvg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.booster-pgvg-btn {
  padding: 8px 16px;
  border: 2px solid var(--aromex-black);
  background: var(--aromex-grey-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--aromex-black);
  font-family: var(--aromex-font-family-primary);
}

.booster-pgvg-btn:hover {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.booster-pgvg-btn.active {
  background: var(--aromex-blue-hover);
  color: var(--aromex-black);
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 4px 8px rgba(111, 207, 244, 0.3);
}

/* Section Base Végétale */
.vegetal-option-container {
  margin: 30px 0;
  text-align: center;
}

.vegetal-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--aromex-grey-light);
  padding: 25px 30px;
  border-radius: 25px;
  border: 2px solid var(--aromex-black);
  cursor: pointer;
  transition: all 0.3s ease;
}

.vegetal-checkbox-label:hover {
  border-color: var(--aromex-blue-hover);
  background: var(--aromex-blue-hover);
}

.vegetal-checkbox-label input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.checkbox-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.checkbox-text strong {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.checkbox-text small {
  font-size: 14px;
  color: #666;
}

/* Comparaison des prix */
.pricing-preview {
  margin: 30px 0;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-comparison {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 25px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  transition: all 0.3s ease;
}

.price-item.selected {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  box-shadow: 0 4px 15px rgba(111, 207, 244, 0.3);
  transform: scale(1.05);
}

.price-item.selected .price-label,
.price-item.selected .price-value {
  color: var(--aromex-black);
}

.price-label {
  font-size: 14px;
  color: var(--aromex-black);
  font-weight: 600;
  text-transform: uppercase;
}

.price-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--aromex-black);
}

.price-value.highlighted {
  color: var(--aromex-black);
}

/* Section Quantité Booster */
.booster-quantity-container {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.booster-quantity-container .quantity-input-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: auto;
  max-width: 300px;
}

.booster-quantity-container .quantity-input-group .quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--aromex-black);
  color: white;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.booster-quantity-container .quantity-input-group .quantity-btn:hover {
  background: #333;
  transform: scale(1.05);
}

.booster-quantity-container .quantity-input-group input[type="number"] {
  border: none;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--aromex-black);
  width: 100px;
  min-width: 80px;
  max-width: 120px;
  padding: 5px;
  flex-shrink: 0;
}

.booster-quantity-container .quantity-input-group input[type="number"]:focus {
  outline: none;
}

/* Cacher les flèches du input number pour le booster */
.booster-quantity-container
  .quantity-input-group
  input[type="number"]::-webkit-inner-spin-button,
.booster-quantity-container
  .quantity-input-group
  input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-info {
  margin-top: 20px;
  width: 100%;
}

.quantity-note {
  font-size: 18px;
  color: var(--aromex-black);
  margin-bottom: 10px;
  padding: 20px;
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 25px;
}

.quantity-note strong {
  font-size: 24px;
  color: var(--aromex-blue-hover);
}

.quantity-warning {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 25px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.booster-pricing {
  margin: 30px 0;
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  border-radius: 25px;
  padding: 25px;
}

.booster-pricing .pricing-info {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.booster-pricing .unit-price,
.booster-pricing .total-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--aromex-black);
}

.booster-pricing strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--aromex-black);
}

/* Section Conditionnement */
.packaging-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.packaging-option-card {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.packaging-option-card:hover {
  border-color: var(--aromex-blue-hover);
  background: var(--aromex-blue-hover);
  transform: translateY(-2px);
}

.packaging-option-card:hover h5,
.packaging-option-card:hover p {
  color: white;
}

.packaging-option-card.active {
  background: var(--aromex-blue-hover);
  border-color: var(--aromex-blue-hover);
  color: white;
}

.packaging-option-card.active h5,
.packaging-option-card.active p {
  color: white;
}

.packaging-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.packaging-option-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0;
  color: var(--aromex-black);
}

.packaging-option-card p {
  font-size: 14px;
  color: var(--aromex-black);
  margin-bottom: 20px;
}

.btn-select-packaging {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.packaging-option-card.active .btn-select-packaging {
  background: white;
  color: var(--aromex-blue-hover);
  border-color: white;
}

.btn-select-packaging:hover {
  background: var(--aromex-blue-hover);
  color: white;
  border-color: var(--aromex-blue-hover);
}

.packaging-summary {
  background: var(--aromex-grey-light);
  border: 2px solid var(--aromex-black);
  border-radius: 25px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
}

.packaging-summary p {
  font-size: 16px;
  margin: 10px 0;
  color: var(--aromex-black);
}

.packaging-summary strong {
  color: var(--aromex-blue-hover);
  font-size: 18px;
}

/* Boutons d'action des sections booster */
.vegetal-step-actions,
.quantity-step-actions,
.packaging-step-actions {
  margin-top: 30px;
  text-align: center;
}

/* Styles du bouton "Passer à l'étape suivante" - déjà défini plus haut */

#btn-add-booster-to-cart {
  background: var(--aromex-grey-light);
  color: var(--aromex-black);
  border: 2px solid var(--aromex-black);
  border-radius: 25px;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

#btn-add-booster-to-cart:hover {
  background: var(--aromex-blue-hover);
  color: white;
  border-color: var(--aromex-blue-hover);
}

/* Responsive */
@media (max-width: 768px) {
  .booster-type-grid {
    grid-template-columns: 1fr;
  }

  .booster-pgvg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-comparison {
    flex-direction: column;
    gap: 20px;
  }

  .packaging-options {
    grid-template-columns: 1fr;
  }
}

/* ===== STYLES POUR BOOSTERS SANS STOCK ===== */

/* Boutons de type de booster grisés */
.booster-type-btn.no-stock-disabled {
  background: #f8f9fa !important;
  color: #6c757d !important;
  border-color: #dee2e6 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

.booster-type-btn.no-stock-disabled:hover {
  background: #f8f9fa !important;
  color: #6c757d !important;
  border-color: #dee2e6 !important;
  transform: none !important;
  box-shadow: none !important;
}

.booster-type-btn.no-stock-disabled .booster-type-label {
  color: #6c757d !important;
}

/* Indicateur de stock indisponible */
.no-stock-indicator {
  display: block;
  font-size: 12px;
  color: #dc3545 !important;
  font-style: italic;
  margin-top: 5px;
  font-weight: 400;
}

/* ===== STYLES POUR BASES NEUTRES ===== */

/* Grille des ratios PG/VG pour les bases */
.base-pgvg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* Boutons de ratio PG/VG pour les bases */
.base-pgvg-btn {
  padding: 15px;
  background: #ffffff;
  border: 2px solid #6fcff4;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #6fcff4;
  text-align: center;
}

.base-pgvg-btn:hover:not(.no-stock-disabled) {
  background: #6fcff4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.base-pgvg-btn.active {
  background: #6fcff4;
  color: #ffffff;
  border-color: #0052a3;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

/* Boutons de base PG/VG grisés (sans stock) */
.base-pgvg-btn.no-stock-disabled {
  background: #f8f9fa !important;
  color: #6c757d !important;
  border-color: #dee2e6 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

.base-pgvg-btn.no-stock-disabled:hover {
  background: #f8f9fa !important;
  color: #6c757d !important;
  border-color: #dee2e6 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ======================================== */
