@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #1A1A1A;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

a {
  color: #800000;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E8E8E8;
  font-size: 0.875rem;
}

th {
  font-weight: 600;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  background: #FFFFFF;
  transition: all 0.2s ease;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #800000;
  box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1A1A1A;
}

.erreur {
  color: #C0392B;
  background: rgba(192, 57, 43, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border-left: 3px solid #C0392B;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.succes {
  color: #27AE60;
  background: rgba(39, 174, 96, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border-left: 3px solid #27AE60;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #800000;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
}
.btn:hover {
  background: #4d0000;
  color: #FFFFFF;
  opacity: 1;
}
.btn-outline {
  background: transparent;
  border: 1px solid #800000;
  color: #800000;
}
.btn-outline:hover {
  background: #800000;
  color: #FFFFFF;
}
.btn-danger {
  background: #C0392B;
}
.btn-danger:hover {
  background: rgb(150.3319148936, 44.629787234, 33.6680851064);
}

header {
  background: #800000;
  padding: 0 2rem;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
header nav {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav a img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
header nav ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}
header nav ul li a:hover {
  color: #FFFFFF;
  opacity: 1;
}

footer {
  background: #1A1A1A;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
  margin-top: 4rem;
}
footer p + p {
  margin-top: 0.5rem;
}

.form-container {
  max-width: 480px;
  margin: 4rem auto;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.form-container h1 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #800000;
  position: relative;
  padding-bottom: 1rem;
}
.form-container h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #B8860B;
}
.form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-container p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6B6B6B;
}

button[type=submit],
input[type=submit] {
  display: inline-block;
  width: 100%;
  padding: 0.85rem 2rem;
  background: #800000;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}
button[type=submit]:hover,
input[type=submit]:hover {
  background: #600000;
  color: #FFFFFF;
}

.hero {
  position: relative;
  background: url("/assets/images/facade.jpg") center/cover no-repeat;
  color: #FFFFFF;
  text-align: center;
  padding: 8rem 2rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(128, 0, 0, 0.65);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero-logo {
  height: 250px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.hero p {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}
.hero .btn {
  background: #FFFFFF;
  color: #800000;
  font-weight: 600;
  padding: 1rem 4rem;
}
.hero .btn:hover {
  background: #F5F0EB;
  color: #800000;
}

.presentation {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.presentation-texte {
  text-align: center;
}
.presentation h2 {
  color: #800000;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.presentation h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #B8860B;
}
.presentation-intro {
  color: #6B6B6B;
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.presentation-tel {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.presentation-tel a {
  color: #800000;
}
.presentation-tel a:hover {
  text-decoration: underline;
}
.presentation-services {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin-bottom: 2rem;
}
.presentation-services li {
  padding: 0.4rem 0;
  color: #1A1A1A;
  font-size: 1rem;
}
.presentation-services li::before {
  color: #800000;
}
.presentation-cta {
  color: #6B6B6B;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
}

.horaires {
  background: #F5F0EB;
  padding: 4rem 2rem;
}
.horaires h2 {
  text-align: center;
  color: #800000;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.horaires h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #B8860B;
}
.horaires table {
  max-width: 500px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.horaires table td {
  padding: 1rem 2rem;
}
.horaires table td:first-child {
  font-weight: 600;
  color: #800000;
  width: 140px;
}
.horaires table td small {
  color: #6B6B6B;
  font-size: 0.75rem;
}
.horaires table tr:last-child td {
  border-bottom: none;
}

.catalogue {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .catalogue .catalogue {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .catalogue .filtres {
    position: static;
    top: unset;
  }
  .catalogue .filtres h2 {
    display: none;
  }
  .catalogue .filtres details {
    cursor: pointer;
  }
  .catalogue .filtres details summary {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    color: #800000;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #B8860B;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .catalogue .filtres details summary::after {
    content: "▼";
    font-size: 0.75rem;
  }
  .catalogue .filtres details[open] summary::after {
    content: "▲";
  }
  .catalogue .grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  .catalogue .produit-card img {
    height: 150px;
  }
}
@media (min-width: 768px) {
  .catalogue .filtres details > summary {
    display: none;
  }
  .catalogue .filtres details {
    display: contents;
  }
}

.filtres {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 80px;
}
.filtres h2 {
  font-size: 1.25rem;
  color: #800000;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #B8860B;
}
.filtres form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filtres button, .filtres a {
  display: block;
  text-align: center;
  padding: 0.6rem;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
}
.filtres button {
  background: #800000;
  color: #FFFFFF;
}
.filtres button:hover {
  background: #4d0000;
}
.filtres a {
  color: #6B6B6B;
  border: 1px solid #E8E8E8;
}
.filtres a:hover {
  background: #F5F0EB;
}

.produits-grid h1 {
  font-size: 1.75rem;
  color: #800000;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E8E8E8;
  position: relative;
}
.produits-grid h1::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #B8860B;
}

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

.produit-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.produit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.produit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.produit-card .no-photo {
  width: 100%;
  height: 200px;
  background: #F5F0EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
  font-size: 0.875rem;
}
.produit-card h3 {
  font-size: 1rem;
  padding: 1rem 1rem 0;
  color: #1A1A1A;
}
.produit-card p {
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  color: #6B6B6B;
}
.produit-card .prix {
  font-size: 1.25rem;
  font-weight: 600;
  color: #800000;
  padding: 0.5rem 1rem;
  margin-top: auto;
}
.produit-card .btn {
  margin: 0.5rem 1rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.6rem;
}

.produit-detail {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .produit-detail {
    grid-template-columns: 1fr;
  }
}

.produit-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  max-height: 500px;
}
.produit-image .no-photo {
  width: 100%;
  height: 400px;
  background: #F5F0EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
}

.produit-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.produit-info h1 {
  color: #800000;
  position: relative;
  padding-bottom: 1rem;
}
.produit-info h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #B8860B;
}
.produit-info .categorie {
  font-size: 0.875rem;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.produit-info .prix {
  font-size: 2.5rem;
  font-weight: 700;
  color: #800000;
  font-family: "Playfair Display", Georgia, serif;
}
.produit-info .rupture {
  color: #C0392B;
  font-weight: 500;
}
.produit-info form {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.produit-info form input[type=number] {
  width: 80px;
}

.panier {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.panier h1 {
  color: #800000;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}
.panier h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #B8860B;
}
.panier table {
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.panier table img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.panier table form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.panier table form input[type=number] {
  width: 70px;
}
.panier table form button {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  background: #800000;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.panier table form button:hover {
  background: #4d0000;
}

.panier-total {
  text-align: right;
  padding: 2rem;
  background: #F5F0EB;
  border-radius: 8px;
}
.panier-total h2 {
  font-size: 1.75rem;
  color: #800000;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .panier {
    padding: 0 1rem;
  }
  .panier table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .panier-total {
    text-align: center;
  }
  .panier-total h2 {
    font-size: 1.25rem;
  }
}
.compte {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.compte h1 {
  color: #800000;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}
.compte h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #B8860B;
}

.compte-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.compte-sections table {
  margin-top: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.compte-sections table td, .compte-sections table th {
  vertical-align: middle;
}
.compte-sections table .btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .compte-sections table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.compte-section {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.compte-section h2 {
  font-size: 1.25rem;
  color: #800000;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #B8860B;
}
.compte-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commande, .confirmation {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.commande h1, .confirmation h1 {
  color: #800000;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}
.commande h1::after, .confirmation h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #B8860B;
}

.commande-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .commande-layout {
    grid-template-columns: 1fr;
  }
}

.commande-form {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.commande-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.commande-form h2 {
  font-size: 1.25rem;
  color: #800000;
  margin-bottom: 1rem;
}
.commande-form p {
  color: #6B6B6B;
  font-size: 0.875rem;
}

.commande-recap {
  background: #F5F0EB;
  padding: 2rem;
  border-radius: 8px;
}
.commande-recap h2 {
  font-size: 1.25rem;
  color: #800000;
  margin-bottom: 1rem;
}
.commande-recap h3 {
  margin-top: 1rem;
  color: #800000;
  text-align: right;
}

.confirmation {
  text-align: center;
}
.confirmation h1 {
  display: inline-block;
}
.confirmation p {
  margin: 1rem 0;
  color: #6B6B6B;
}
.confirmation table {
  text-align: left;
  margin: 2rem 0;
}
.confirmation h3 {
  color: #800000;
  text-align: right;
}
.confirmation .btn + .btn {
  margin-left: 1rem;
}

.detail-commande-client {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.detail-commande-client .btn-outline {
  margin-bottom: 2rem;
  display: inline-block;
}
.detail-commande-client h1 {
  color: #800000;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.detail-commande-client h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #B8860B;
}
.detail-commande-client .commande-meta {
  color: #6B6B6B;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.detail-commande-client .commande-meta strong {
  color: #800000;
  text-transform: capitalize;
}
.detail-commande-client table {
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.detail-commande-client table td, .detail-commande-client table th {
  vertical-align: middle;
}
.detail-commande-client table img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.detail-commande-client .commande-total {
  text-align: right;
  padding: 1rem 2rem;
  background: #F5F0EB;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.detail-commande-client .commande-total h3 {
  color: #800000;
  font-size: 1.75rem;
}
.detail-commande-client form .btn {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .detail-commande-client {
    padding: 0 1rem;
  }
  .detail-commande-client h1 {
    font-size: 1.75rem;
  }
  .detail-commande-client table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .detail-commande-client .commande-total h3 {
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=style.css.map */
