:root {
  --dark: #2e2a25;
  --panel: #3b362f;
  --line: #5a5147;
  --cream: #f3eee7;
  --sand: #d8c3a5;
  --text-dark: #2e2a25;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--dark);
  color: var(--cream);
}

p {
  line-height: 1.5;
  opacity: 0.95;
}

button,
.button,
.primary-button {
  display: inline-block;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--sand);
  color: var(--text-dark);
  font-weight: bold;
  text-decoration: none;
}

button:hover,
.button:hover,
.primary-button:hover {
  opacity: 0.9;
}

/* HOME */

.home-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
}

.home-container {
  max-width: 700px;
}

.home-logo {
  width: 100%;
  max-width: 420px;
  margin-bottom: 35px;
}

.home-container h1 {
  font-size: 3rem;
  margin: 0 0 15px;
}

.home-container h2 {
  font-size: 1.8rem;
  font-weight: normal;
  margin: 0 0 30px;
  opacity: 0.9;
}

.home-container p {
  font-size: 1.2rem;
}

.home-button {
  margin-top: 25px;
  padding: 14px 24px;
}

/* ORDER */

.order-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.order-card {
  width: 100%;
  max-width: 620px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 42px;
}

.kicker {
  color: var(--sand);
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.order-card h1 {
  margin: 12px 0 18px;
  font-size: 2.5rem;
}

.intro {
  margin-bottom: 34px;
  color: var(--cream);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.primary-button {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 10px;
}

.result-box {
  margin-top: 28px;
  color: var(--sand);
}

/* ADMIN */

.admin-page {
  padding: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: var(--panel);
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th,
.status {
  color: var(--sand);
  font-weight: bold;
}

@media (max-width: 640px) {
  .order-card {
    padding: 28px 22px;
  }

  .home-container h1,
  .order-card h1 {
    font-size: 2.3rem;
  }
}
/* force redeploy */
.reception-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.session-box {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--cream);
}

.session-icon,
.success-icon {
  width: 54px;
  height: 54px;
  border: 2px solid #9be37a;
  color: #9be37a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: bold;
  flex-shrink: 0;
}

.session-title,
.success-box strong,
.success-status {
  color: #9be37a;
  font-weight: bold;
}

.success-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: var(--sand);
}
.success-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: var(--sand);
}

.success-icon {
  width: 54px;
  height: 54px;
  border: 2px solid #9be37a;
  color: #9be37a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: bold;
  flex-shrink: 0;
}

.success-title,
.success-status {
  color: #9be37a;
  font-weight: bold;
}

.qr-link {
  display: inline-block;
  margin-top: 18px;
  color: #9be37a;
  font-weight: bold;
  text-decoration: none;
}

.qr-link:hover {
  opacity: 0.9;
}
#qr-code {
  margin-top: 14px;
  border-radius: 12px;
  background: white;
  padding: 10px;
}
.qr-wrapper {
  margin-top: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 26px;
  text-align: center;
}

.qr-title {
  color: #9be37a;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

#qr-code {
  display: block;
  margin: 0 auto;
  width: 240px;
  height: 240px;
  background: white;
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 10px 30px rgba(0,0,0,0.35);
}

.qr-subtitle {
  margin-top: 18px;
  color: var(--sand);
  line-height: 1.5;
}
.secondary-button {
  width: 100%;
  margin-top: 12px;
  background: transparent;
  border: 1px solid #9be37a;
  color: #9be37a;
  padding: 14px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1rem;
}

.secondary-button:hover {
  background: rgba(155,227,122,0.08);
}

#reader {
  overflow: hidden;
  border-radius: 18px;
}

/* ADMIN V2 */

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(216,195,165,0.12), transparent 34%),
    var(--dark);
  padding: 34px 20px;
}

.admin-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.admin-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 8px 0 0;
}

.admin-badge {
  border: 1px solid #9be37a;
  color: #9be37a;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: bold;
  white-space: nowrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

.stat-card.green {
  border-color: rgba(155,227,122,0.55);
}

.stat-label {
  color: var(--sand);
  font-size: 0.95rem;
}

.stat-value {
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--cream);
}

.search-box {
  margin: 24px 0;
}

.search-box input {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--cream);
  font-size: 1rem;
}

.search-box input::placeholder {
  color: rgba(243,238,231,0.55);
}

.orders-list {
  display: grid;
  gap: 18px;
}

.order-card-v2 {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.order-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.order-code {
  color: #9be37a;
  font-weight: bold;
  font-size: 1.2rem;
}

.order-customer {
  margin-top: 6px;
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--cream);
}

.order-meta,
.order-shop,
.pouch-list {
  margin-top: 8px;
  color: var(--sand);
}

.status-pill {
  background: rgba(155,227,122,0.1);
  border: 1px solid rgba(155,227,122,0.45);
  color: #9be37a;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: right;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0 18px;
}

.timeline-step {
  color: rgba(243,238,231,0.45);
  font-size: 0.85rem;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--line);
  margin-bottom: 8px;
}

.timeline-step.active {
  color: #9be37a;
  font-weight: bold;
}

.timeline-step.active .timeline-dot {
  background: #9be37a;
  box-shadow: 0 0 0 5px rgba(155,227,122,0.12);
}

.photo-zone {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.photo-button {
  width: 100%;
  background: transparent;
  border: 1px dashed rgba(155,227,122,0.55);
  color: #9be37a;
  border-radius: 16px;
  padding: 14px;
  font-weight: bold;
}

@media (max-width: 760px) {
  .admin-header {
    flex-direction: column;
  }

  .admin-badge {
    align-self: flex-start;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-top {
    flex-direction: column;
  }

  .status-pill {
    text-align: left;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-card-v2 {
    padding: 20px;
  }
}

@media (max-width: 460px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.photo-input {
  display: none;
}

.knife-photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.knife-photo-card {
  display: block;
  text-decoration: none;
  color: var(--sand);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.knife-photo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.knife-photo-card span {
  display: block;
  padding: 8px;
  font-size: 0.75rem;
}

.small-action-button {
  width: 100%;
  margin-top: 8px;
  background: transparent;
  border: 1px solid rgba(155,227,122,0.55);
  color: #9be37a;
  border-radius: 12px;
  padding: 9px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
}

.knife-linked {
  margin: 8px;
  color: #9be37a;
  font-size: 0.8rem;
  font-weight: bold;
}

.knife-form {
  margin-top: 12px;
}

.knife-form .form-group {
  margin-bottom: 10px;
}

.knife-form input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
}

.knife-photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.knife-photo-wrapper {
  width: 220px;
}

.knife-photo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}

.knife-photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.knife-photo-card span {
  display: block;
  padding: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.small-action-button {
  width: calc(100% - 20px);
  margin: 0 10px 12px;
  background: #d8c2a0;
  color: #2b241d;
  border: none;
  border-radius: 12px;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
}

.knife-form {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.knife-form .form-group {
  margin-bottom: 14px;
}

.knife-form label {
  display: block;
  margin-bottom: 6px;
  color: #d8c2a0;
  font-size: 0.85rem;
  font-weight: bold;
}

.knife-form input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  box-sizing: border-box;
}

.primary-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: #9be37a;
  color: #1d2418;
  font-weight: bold;
  cursor: pointer;
}

.knife-linked {
  margin: 0 10px 12px;
  color: #9be37a;
  font-size: 0.8rem;
  font-weight: bold;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}

.modal-knife-photo {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin: 16px 0 22px;
}

.modal-card .form-group {
  margin-bottom: 14px;
}

.modal-card label {
  color: var(--sand);
  font-weight: bold;
}

.modal-card input {
  width: 100%;
  margin-top: 6px;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .modal-card {
    max-height: 94vh;
    padding: 22px;
  }
}

.admin-actions {
  margin-top: 18px;
}

.admin-actions .secondary-button {
  width: auto;
  padding: 12px 18px;
}

.client-section-title {
  margin: 36px 0 18px;
  color: var(--cream);
  font-size: 2rem;
}

.client-knives-grid {
  display: grid;
  gap: 18px;
}

.knife-client-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
}

.knife-client-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.knife-client-card h3 {
  margin: 0 0 8px;
  color: #9be37a;
}

.knife-client-card p {
  color: var(--sand);
  margin: 6px 0;
}

@media (max-width: 640px) {

  .client-knives-grid {
    grid-template-columns: 1fr;
  }

}

.client-order-knives {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.client-order-knife {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 12px;
  color: var(--sand);
}

.client-order-knife img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}

.client-knives-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.client-order-knives {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

#client-content {
  display: grid;
  gap: 28px;
}

.client-section-title {
  margin: 56px 0 10px;
}

.client-knives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.knife-client-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}

.client-order-knives {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 6px;
}

.client-order-knife {
  min-width: 220px;
}

/* LANDING REAL V2 - clean */

.lae-site {
  background: #0f0d0a;
  color: var(--cream);
  font-family: Arial, sans-serif;
}

.lae-container {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.lae-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 28px 38px;
}

.lae-brand img {
  width: 190px;
  display: block;
}

.lae-nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 14px;
  font-size: 1rem;
}

.lae-nav a {
  color: var(--cream);
  text-decoration: none;
}

.lae-nav-links a.active,
.lae-nav-links a:hover {
  color: var(--sand);
}

.lae-nav-cta,
.lae-button-primary,
.lae-button-secondary {
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lae-nav-cta,
.lae-button-primary {
  background: linear-gradient(135deg, #e4c38c, #bd9255);
  color: #1c140d !important;
}

.lae-nav-cta {
  padding: 15px 24px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 4px;
}

.lae-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #0f0d0a;
}

.lae-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,8,6,0.98) 0%, rgba(10,8,6,0.88) 36%, rgba(10,8,6,0.35) 66%, rgba(10,8,6,0.14) 100%),
    url("assets/hero-affutage-premium.png") right center / cover no-repeat;
}

.lae-hero-watermark {
  position: absolute;
  z-index: 2;
  left: 36%;
  top: 18%;
  width: 360px;
  height: 360px;
  background: url("assets/logo_affutage_ecullois.png") center / contain no-repeat;
  opacity: 0.07;
  filter: grayscale(1);
  pointer-events: none;
}

.lae-hero-content {
  position: relative;
  z-index: 5;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding-top: 250px;
  padding-bottom: 80px;
}

.lae-hero-copy {
  max-width: 720px;
}

.lae-hero h1,
.lae-page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.3rem, 5.7vw, 5.6rem);
  line-height: 0.98;
  margin: 18px 0 24px;
  letter-spacing: -0.045em;
  color: #fbf4ea;
}

.lae-hero-copy p,
.lae-page-hero-content p {
  font-size: 1.08rem;
  max-width: 590px;
}

.lae-proof-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px;
  margin: 34px 0 30px;
}

.lae-proof-row div {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
}

.lae-proof-row span,
.lae-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #bd9255;
  color: #e4c38c;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.lae-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.lae-button-primary,
.lae-button-secondary {
  padding: 18px 28px;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.lae-button-secondary {
  border: 1px solid #bd9255;
  color: var(--cream);
  background: rgba(0,0,0,0.16);
}

.lae-button-small {
  padding: 13px 20px;
  font-size: 0.78rem;
}

.lae-trust-line {
  color: var(--sand);
  font-size: 0.95rem !important;
}

.lae-section {
  padding: 74px 0;
  background: radial-gradient(circle at top right, rgba(216,195,165,0.05), transparent 35%), #15120f;
  border-top: 1px solid rgba(216,195,165,0.14);
}

.lae-section-dark {
  background: linear-gradient(180deg, #171411, #11100d);
}

.lae-section-title h2,
.lae-pro-copy h2,
.lae-final-card h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  margin: 8px 0 28px;
  color: #fbf4ea;
  letter-spacing: -0.03em;
}

.lae-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 28px;
  text-align: center;
}

.lae-steps span {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border: 1px solid #bd9255;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e4c38c;
  font-weight: bold;
}

.lae-steps h3,
.lae-feature-grid h3,
.lae-proof-cards h3 {
  color: #e4c38c;
  margin-bottom: 8px;
}

.lae-steps p,
.lae-feature-grid p,
.lae-proof-cards p,
.lae-final-card p,
.lae-pro-copy p,
.lae-pro-list p {
  font-size: 0.95rem;
  color: rgba(243,238,231,0.86);
}

.lae-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lae-feature-grid article,
.lae-proof-cards article,
.lae-final-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(216,195,165,0.18);
  border-radius: 10px;
  padding: 28px;
}

.lae-pro-strip {
  display: grid;
  grid-template-columns: 0.9fr 0.85fr 0.65fr;
  min-height: 310px;
  background: #0f0d0a;
  border-top: 1px solid rgba(216,195,165,0.14);
  border-bottom: 1px solid rgba(216,195,165,0.14);
}

.lae-pro-image {
  background:
    linear-gradient(90deg, rgba(10,8,6,0.1), rgba(10,8,6,0.22)),
    url("assets/pro-affutage-premium.png") center / cover no-repeat;
}

.lae-pro-copy,
.lae-pro-list {
  padding: 54px 42px;
}

.lae-pro-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.lae-pro-list p::before {
  content: "✓";
  color: #e4c38c;
  margin-right: 12px;
}

.lae-proof-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 34px;
  align-items: stretch;
}

.lae-proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.lae-final-card {
  position: relative;
  overflow: hidden;
}

.lae-final-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 180px;
  height: 180px;
  background: url("assets/logo_affutage_ecullois.png") center / contain no-repeat;
  opacity: 0.07;
  filter: grayscale(1);
}

.lae-final-card > * {
  position: relative;
  z-index: 1;
}

.lae-footer {
  padding: 32px 0;
  background: #0b0a08;
  border-top: 1px solid rgba(216,195,165,0.22);
  color: rgba(243,238,231,0.78);
}

.lae-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.lae-footer img {
  width: 170px;
}

.lae-footer a {
  color: var(--sand);
}

.lae-page-hero {
  position: relative;
  min-height: 720px;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,8,6,0.98) 0%, rgba(10,8,6,0.86) 40%, rgba(10,8,6,0.42) 72%, rgba(10,8,6,0.2) 100%),
    url("assets/hero-affutage-premium.png") right center / cover no-repeat;
}

.lae-page-hero-pro {
  background:
    linear-gradient(90deg, rgba(10,8,6,0.95), rgba(10,8,6,0.62)),
    url("assets/pro-affutage-premium.png") center / cover no-repeat;
}

.lae-page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 250px;
  padding-bottom: 80px;
}

@media (max-width: 1100px) {
  .lae-nav {
    grid-template-columns: 160px 1fr auto;
  }

  .lae-brand img {
    width: 160px;
  }

  .lae-nav-links {
    gap: 18px;
    font-size: 0.92rem;
  }

  .lae-hero-content {
    padding-top: 230px;
  }
}

@media (max-width: 980px) {
  .lae-nav {
    position: relative;
    grid-template-columns: 1fr auto;
    padding: 18px 22px;
    background: #0f0d0a;
    align-items: center;
  }

  .lae-nav-links {
    display: none;
  }

  .lae-brand img {
    width: 150px;
    max-width: 58vw;
  }

  .lae-nav-cta {
    padding: 12px 15px;
    font-size: 0.72rem;
    margin-top: 0;
  }

  .lae-hero,
  .lae-hero-content {
    min-height: auto;
  }

  .lae-hero-bg {
    background:
      linear-gradient(180deg, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0.92) 54%, rgba(10,8,6,1) 100%),
      url("assets/hero-affutage-premium.png") center top / cover no-repeat;
  }

  .lae-hero-content {
    padding-top: 320px;
    padding-bottom: 56px;
  }

  .lae-hero-watermark {
    display: none;
  }

  .lae-proof-row,
  .lae-feature-grid,
  .lae-proof-layout,
  .lae-footer-grid {
    grid-template-columns: 1fr;
  }

  .lae-steps {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .lae-steps article {
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 18px;
  }

  .lae-steps span {
    grid-row: span 2;
    margin: 0;
  }

  .lae-pro-strip {
    grid-template-columns: 1fr;
  }

  .lae-pro-image {
    min-height: 230px;
  }

  .lae-proof-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lae-container {
    width: min(100% - 36px, 1180px);
  }

  .lae-hero-content {
    padding-top: 120px;
  }

  .lae-hero h1,
  .lae-page-hero h1 {
    font-size: 3.05rem;
  }

  .lae-proof-row {
    gap: 14px;
  }

  .lae-actions,
  .lae-button-primary,
  .lae-button-secondary {
    width: 100%;
  }

  .lae-button-primary,
  .lae-button-secondary {
    text-align: center;
  }

  .lae-section {
    padding: 54px 0;
  }

  .lae-pro-copy,
  .lae-pro-list {
    padding: 36px 22px;
  }
}

/* PRICING SECTION */

.lae-pricing-section {
  background:
    radial-gradient(circle at top left, rgba(216,195,165,0.08), transparent 30%),
    #12100d;
}

.lae-pricing-intro {
  max-width: 760px;
  color: rgba(243,238,231,0.84);
}

.lae-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.lae-price-card {
  position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(216,195,165,0.18);
  border-radius: 18px;
  padding: 30px;
}

.lae-price-card-featured {
  border-color: rgba(228,195,140,0.45);
  box-shadow:
    0 0 0 1px rgba(228,195,140,0.12),
    0 18px 40px rgba(0,0,0,0.28);
}

.lae-price-badge {
  display: inline-block;
  border: 1px solid rgba(228,195,140,0.4);
  color: #e4c38c;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lae-price-card h3 {
  margin: 20px 0 12px;
  font-size: 1.9rem;
  color: #fbf4ea;
  font-family: Georgia, serif;
}

.lae-price {
  font-size: 3rem;
  font-weight: bold;
  color: #e4c38c;
  line-height: 1;
}

.lae-price span {
  font-size: 1rem;
  color: rgba(243,238,231,0.7);
}

.lae-price-subtitle {
  margin-top: 12px;
  color: rgba(243,238,231,0.75);
}

.lae-price-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 12px;
}

.lae-price-list li {
  color: rgba(243,238,231,0.9);
  position: relative;
  padding-left: 24px;
}

.lae-price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e4c38c;
}

.lae-pouch-note {
  margin-top: 34px;
  color: var(--sand);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .lae-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* PARTICULIERS PAGE */

.lae-pricing-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
}

@media (max-width: 980px) {
  .lae-pricing-grid-two {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* ORDER PREMIUM */

.lae-order-card {
  margin: 0 auto;
  max-width: 680px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(216,195,165,0.18);
  border-radius: 18px;
}

.lae-order-card h1 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #fbf4ea;
  letter-spacing: -0.03em;
}

.order-note {
  margin: -8px 0 24px;
  padding: 18px;
  border: 1px solid rgba(216,195,165,0.22);
  border-radius: 14px;
  color: var(--sand);
  background: rgba(0,0,0,0.16);
  line-height: 1.5;
}

.lae-order-card input,
.lae-order-card select {
  background: rgba(255,255,255,0.94);
  color: #1c140d;
}

.lae-order-card .primary-button {
  background: linear-gradient(135deg, #e4c38c, #bd9255);
  color: #1c140d;
  border-radius: 12px;
}

.lae-order-card .result-box {
  color: var(--cream);
}

@media (max-width: 640px) {
  .lae-order-card {
    padding: 28px 22px;
  }
}

/* ORDER CART */

.order-pack-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.order-pack-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(216,195,165,0.22);
  border-radius: 18px;
  background: rgba(0,0,0,0.16);
}

.order-pack-card h3 {
  margin: 14px 0 8px;
  color: #fbf4ea;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
}

.order-pack-card p {
  margin: 0 0 10px;
  color: rgba(243,238,231,0.78);
}

.order-pack-card strong {
  color: #e4c38c;
  font-size: 1.35rem;
}

.pack-quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pack-quantity-control button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4c38c, #bd9255);
  color: #1c140d;
  font-size: 1.3rem;
}

.pack-quantity-control span {
  min-width: 24px;
  text-align: center;
  font-weight: bold;
  color: var(--cream);
  font-size: 1.2rem;
}

.order-summary-box {
  margin: 0 0 24px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(228,195,140,0.28);
  background: rgba(255,255,255,0.035);
}

.cart-line,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.cart-total {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(216,195,165,0.22);
  color: #e4c38c;
  font-size: 1.1rem;
}

.cart-meta {
  margin-top: 12px;
  color: var(--sand);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .order-pack-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ORDER CONFIRMATION NEXT STEPS */

.next-steps-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(216,195,165,0.22);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
}

.next-steps-box h3 {
  margin: 10px 0 18px;
  color: #fbf4ea;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
}

.next-steps-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 16px;
}

.next-steps-list li {
  color: rgba(243,238,231,0.9);
  line-height: 1.5;
}

.next-steps-list strong {
  color: #e4c38c;
}

.next-steps-note {
  margin: 22px 0 0;
  color: var(--sand);
  font-weight: bold;
}

/* CLIENT DASHBOARD */

.client-dashboard-card,
.client-next-action {
  margin-bottom: 28px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(216,195,165,0.18);
  background: rgba(255,255,255,0.03);
}

.client-dashboard-card h2,
.client-next-action h2 {
  margin: 12px 0;
  color: #fbf4ea;
  font-family: Georgia, 'Times New Roman', serif;
}

.client-stats {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.client-stat {
  flex: 1;
  padding: 18px;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  text-align: center;
}

.client-stat strong {
  display: block;
  font-size: 2rem;
  color: #e4c38c;
}

.client-stat span {
  color: rgba(243,238,231,0.8);
}

.client-next-action {
  border-color: rgba(228,195,140,0.28);
}

@media (max-width: 640px) {

  .client-stats {
    flex-direction: column;
  }

}

/* CLIENT ORDER NEXT ACTION */

.client-order-next-action {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(228,195,140,0.28);
  background: rgba(0,0,0,0.16);
  color: rgba(243,238,231,0.9);
  line-height: 1.5;
}

.client-order-next-action strong {
  color: #e4c38c;
}

/* CLIENT KNIFE HISTORY */

.knife-client-info {
  margin-top: 14px;
}

.knife-history {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(216,195,165,0.18);
  background: rgba(0,0,0,0.12);
}

.knife-history summary {
  cursor: pointer;
  color: #e4c38c;
  font-weight: bold;
}

.knife-history-line {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(216,195,165,0.14);
  color: rgba(243,238,231,0.88);
}

.knife-history-line span {
  color: var(--sand);
}

/* CLIENT ADD KNIFE TO ORDER */

.knife-add-to-order {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(216,195,165,0.18);
  background: rgba(0,0,0,0.12);
}

.knife-add-to-order strong {
  display: block;
  margin-bottom: 10px;
  color: #e4c38c;
}

.knife-add-to-order select {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 12px;
  border: none;
}

.knife-locked{
  color:#9be26d;
  font-weight:600;
}

/* CLIENT PREMIUM TIMELINE */

.client-timeline {
  grid-template-columns: repeat(6, 1fr);
}

.timeline-description {
  margin-top: 5px;
  font-size: 0.75rem;
  color: rgba(243,238,231,0.55);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .client-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .client-timeline {
    grid-template-columns: 1fr;
  }
}

.knife-card-actions {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.knife-status-pill {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(228,195,140,0.35);
  background: rgba(228,195,140,0.08);
  color: #e4c38c;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}

.knife-status-pill.muted {
  color: rgba(243,238,231,0.65);
  border-color: rgba(216,195,165,0.18);
  background: rgba(255,255,255,0.03);
}

.knife-card-actions .small-action-button {
  width: 100%;
  margin: 0;
}

.client-order-add-knife {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(216,195,165,0.18);
  background: rgba(0,0,0,0.14);
}

.client-order-add-knife strong {
  display: block;
  margin-bottom: 12px;
  color: #e4c38c;
}

.client-order-add-knife select {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  border: none;
}

/* CONTACT FORM */

.lae-contact-form {
  max-width: 720px;
  margin-top: 40px;
}

.lae-form-row {
  margin-bottom: 18px;
}

.lae-contact-form input,
.lae-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(216, 195, 165, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ec;
  font-size: 1rem;
  outline: none;
}

.lae-contact-form input::placeholder,
.lae-contact-form textarea::placeholder {
  color: rgba(243, 238, 231, 0.58);
}

.lae-contact-form input:focus,
.lae-contact-form textarea:focus {
  border-color: #d8bd86;
  background: rgba(255, 255, 255, 0.09);
}

.lae-contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

#contactSuccess {
  color: #97e878;
  font-weight: 700;
}

.lae-contact-phone {
  margin-top: 36px;
  text-align: center;
}

.lae-contact-phone strong {
  color: #f3eee7;
}

.lae-contact-phone a {
  display: inline-block;
  margin-top: 12px;
  color: #d8bd86;
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-phone-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:40px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(212,176,114,0.15);
    border-radius:24px;

    backdrop-filter:blur(8px);

    max-width:520px;
    margin:0 auto;
}

.contact-phone-label{
    font-size:1.1rem;
    color:#e8e1d8;
}

.contact-phone-number{
    font-size:3rem;
    font-weight:700;
    letter-spacing:3px;

    color:#d4b072;
    text-decoration:none;

    transition:0.3s;
}

.contact-phone-number:hover{
    color:#e8c98a;
    transform:scale(1.02);
}

.contact-phone-hours{
    font-size:0.9rem;
    color:rgba(255,255,255,0.6);
}

.contact-phone-card {
  max-width: 680px;
  margin: 72px auto 0;
  padding: 44px 32px;
  text-align: center;

  border: 1px solid rgba(216, 195, 165, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at center top, rgba(216, 195, 165, 0.10), transparent 45%),
    rgba(255, 255, 255, 0.025);
}

.contact-phone-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #d8bd86;
  margin-bottom: 22px;
}

.contact-phone-ornament span {
  display: block;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8bd86, transparent);
}

.contact-phone-label {
  color: #fff7ec;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.contact-phone-number {
  display: inline-block;
  color: #d8bd86;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.15;
}

.contact-phone-hours {
  margin-top: 18px;
  color: rgba(243, 238, 231, 0.62);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-phone-card {
    margin-top: 48px;
    padding: 32px 20px;
    border-radius: 22px;
  }

  .contact-phone-label {
    font-size: 1.25rem;
  }

  .contact-phone-number {
    font-size: 1.85rem;
    letter-spacing: 1px;
  }

  .contact-phone-ornament span {
    width: 56px;
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;

  z-index: 9999;

  display: flex;
  justify-content: center;
}

.cookie-banner-content {
  max-width: 900px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 22px;

  background: #2f2924;

  border: 1px solid rgba(216,195,165,0.25);
  border-radius: 18px;

  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.cookie-banner-content p {
  margin: 0;
  color: #f3eee7;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-content button {
  border: none;

  padding: 12px 18px;

  background: #d8bd86;
  color: #1f1f1f;

  border-radius: 12px;

  font-weight: 700;
  cursor: pointer;
}

.cookie-banner-content button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-content button {
    width: 100%;
  }

}
