*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #050507;
  color: #f6f2ea;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 3vw, 3rem);
  background: linear-gradient(to bottom, #050507 60%, rgba(5, 5, 7, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand-mark {
  border: none;
  padding: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-image: url("https://images.unsplash.com/photo-1499636136210-6f4ee915583e?auto=format&fit=crop&w=400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 18px 38px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.brand-monogram {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: rgba(12, 8, 4, 0.9);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.brand-text {
  margin-left: 0.8rem;
}

.brand-name {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 1rem;
  color: #f5f1e6;
}

.brand-tagline {
  margin: 0.1rem 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 230, 0.7);
}

.header-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-link {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #f7e1a4, #c18c3f);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.18rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(245, 241, 230, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: radial-gradient(circle at 20% 0, #f9f1d9, #c58e3e);
  color: #1c1308;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 225, 164, 0.6);
  background: rgba(5, 5, 7, 0.8);
  color: rgba(246, 239, 222, 0.9);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
  transition: background 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
}

.cart-toggle:hover {
  background: rgba(20, 15, 10, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
}

.cart-count {
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #f9f1d9, #c58e3e);
  color: #1c1308;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 3rem) 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 10% 0, rgba(250, 227, 182, 0.17), transparent),
    radial-gradient(circle at 80% 120%, rgba(183, 99, 47, 0.22), transparent);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
  animation: heroGlow 16s ease-in-out infinite alternate;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 239, 222, 0.7);
  margin: 0 0 0.6rem;
}

.hero-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3.1vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: 0.03em;

  background: linear-gradient(135deg, #f5ede0, #f5d49b, #e3b15f);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 1rem 0 1.6rem;
  font-size: 0.98rem;
  max-width: 34rem;
  color: rgba(246, 239, 225, 0.78);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.primary-btn {
  background-image: linear-gradient(135deg, #f7e1a4, #c18c3f);
  color: #1c1308;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.7);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.85);
}

.ghost-btn {
  background: transparent;
  color: #f5efe1;
  border-color: rgba(248, 223, 166, 0.6);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.hero-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-kitchen-glow {
  position: absolute;
  inset: 8% -15%;
  background-image: linear-gradient(
      120deg,
      rgba(255, 244, 230, 0.13),
      transparent 40%,
      rgba(255, 201, 146, 0.18)
    ),
    url("https://images.unsplash.com/photo-1514996937319-344454492b37?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.7);
  opacity: 0.52;
  border-radius: 26px;
  z-index: -1;
}

.photo-frame {
  position: relative;
  border-radius: 24px;
  padding: 0.4rem;
  background: radial-gradient(circle at 10% 0, #f9f1d7, #b18035 45%, #17130e);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.85);
  max-width: 320px;
}

.photo-frame img {
  border-radius: 18px;
  object-fit: cover;
}

.photo-caption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 248, 235, 0.92);
  text-align: center;
}

.photo-caption.lang-en {
  font-weight: 500;
  white-space: nowrap;
}

.section {
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
  max-width: 1120px;
  margin: 0 auto;
}

.section-alt {
  background: radial-gradient(circle at top, #1a1510 0, #050507 55%);
  border-radius: 32px 32px 0 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 1.8rem;
}

.section-title {
  margin: 0 0 0.3rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(244, 237, 223, 0.8);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.product-card {
  border-radius: 22px;
  background: radial-gradient(circle at 0 -20%, #f6e7c2 0, #1b1510 45%, #050507);
  padding: 0.3rem;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-body {
  padding: 1rem 1.1rem 1.2rem;
  background: radial-gradient(
    circle at 20% 0,
    rgba(255, 252, 244, 0.12),
    rgba(5, 5, 7, 0.98)
  );
}

.product-title {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 500;
}

.product-desc {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: rgba(244, 236, 220, 0.8);
}

.product-price {
  margin: 0;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f7e1a4;
}

.product-image {
  height: 160px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: #181113;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 45%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.12);
}

.add-to-cart-btn {
  margin-top: 0.7rem;
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  background: rgba(247, 225, 164, 0.12);
  color: #f7e1a4;
  border: 1px solid rgba(247, 225, 164, 0.55);
  transition: background 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.add-to-cart-btn:hover {
  background: rgba(247, 225, 164, 0.24);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
}

.custom-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.custom-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: rgba(243, 236, 222, 0.85);
}

.custom-note {
  border-radius: 18px;
  padding: 1rem 1.2rem;
  background: radial-gradient(circle at 10% 0, #f7e1a4, #b77e34);
  color: #221306;
  font-size: 0.92rem;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.85);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.contact-list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: rgba(245, 238, 225, 0.9);
}

.contact-highlight {
  font-weight: 500;
}

.contact-note {
  border-radius: 18px;
  padding: 1rem 1.2rem;
  background: rgba(5, 5, 7, 0.85);
  border: 1px solid rgba(247, 225, 164, 0.5);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: auto;
  padding: 1.8rem clamp(1.5rem, 3vw, 3rem) 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.86rem;
  color: rgba(246, 239, 227, 0.76);
}

.footer-line {
  margin: 0.1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-note {
  margin-top: 0.7rem;
  font-size: 0.76rem;
  color: rgba(230, 221, 207, 0.72);
}

.lang-fr {
  display: none;
}

.section-cart {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem) 3rem;
}

.cart-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.cart-items {
  border-radius: 22px;
  padding: 1.1rem 1.2rem;
  background: radial-gradient(circle at 0 -20%, #f6e7c2 0, #1b1510 45%, #050507);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.8);
}

.cart-empty {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 236, 220, 0.78);
}

.cart-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

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

.cart-item-main {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cart-item-name {
  font-weight: 500;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: rgba(245, 236, 220, 0.76);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-qty-btn {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 225, 164, 0.7);
  background: transparent;
  color: #f7e1a4;
  cursor: pointer;
  font-size: 0.8rem;
}

.cart-qty {
  min-width: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
}

.cart-price-line {
  font-size: 0.88rem;
  color: rgba(247, 225, 164, 0.92);
}

.cart-summary {
  border-radius: 22px;
  padding: 1.2rem 1.4rem;
  background: radial-gradient(circle at 10% 0, #f7e1a4, #b77e34);
  color: #221306;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.85);
  font-size: 0.9rem;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.cart-note {
  margin: 0.6rem 0 1rem;
  font-size: 0.82rem;
}

.checkout-form {
  display: grid;
  gap: 0.75rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.field-group label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-group input,
.field-group textarea {
  border-radius: 10px;
  border: none;
  padding: 0.5rem 0.7rem;
  font-size: 0.86rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.88);
  color: #221306;
}

.field-group textarea {
  resize: vertical;
}

.checkout-btn {
  margin-top: 0.4rem;
  width: 100%;
}

.checkout-message {
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
}

.checkout-message--success {
  color: #135724;
}

.checkout-message--error {
  color: #7a1c1c;
}

@keyframes heroGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -2%, 0) scale(1.03);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }

  .brand-text {
    flex: 1 1 100%;
    margin-top: 0.5rem;
  }

  .header-controls {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .main-nav {
    gap: 0.8rem;
    font-size: 0.7rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .hero-photo {
    order: -1;
  }

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

  .custom-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1.1rem;
  }

  .brand-name {
    letter-spacing: 0.18em;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-inline: 1.1rem;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

