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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8f5f0;
  color: #3d3530;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: #3d3530;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.lang-btn.active {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.header {
  padding-top: 42px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5ddd5;
  transition: background 0.3s, border-color 0.3s;
}

.header-dark {
  padding-top: 42px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f0ebe5;
  border-bottom: 1px solid #e5ddd5;
}

.header-dark .nav a {
  color: #7a7068;
}

.header-dark .nav a:hover,
.header-dark .nav a.active {
  color: #3d3530;
  border-bottom-color: #3d3530;
}

.header-dark .icon-link {
  color: #7a7068;
}

.header-dark .icon-link:hover {
  color: #3d3530;
}

.header-dark .cart-btn {
  color: #7a7068;
}

.header-dark .cart-btn:hover {
  color: #3d3530;
}

.header-dark .cart-count {
  background: #3d3530;
  color: #fff;
}

.header-transparent {
  position: absolute;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-transparent .nav a {
  color: rgba(255, 255, 255, 0.7);
}

.header-transparent .nav a:hover,
.header-transparent .nav a.active {
  color: #fff;
  border-bottom-color: #fff;
}

.header-transparent .icon-link {
  color: rgba(255, 255, 255, 0.7);
}

.header-transparent .icon-link:hover {
  color: #fff;
}

.header-transparent .cart-btn {
  color: rgba(255, 255, 255, 0.7);
}

.header-transparent .cart-btn:hover {
  color: #fff;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo img {
  height: 64px;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #8a8078;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
  padding-bottom: 2px;
}

.nav a:hover,
.nav a.active {
  color: #3d3530;
  border-bottom: 2px solid #3d3530;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-link {
  color: #8a8078;
  display: flex;
  transition: color 0.2s;
  text-decoration: none;
}

.icon-link:hover {
  color: #3d3530;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  padding: 4px;
  display: flex;
}

.cart-btn:hover {
  color: #3d3530;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #3d3530;
  color: #fff;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 1200px;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  margin: 20px 0 16px;
  line-height: 1.1;
  letter-spacing: 4px;
}

.hero-tagline {
  font-size: clamp(12px, 1.6vw, 18px);
  font-weight: 200;
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 48px;
}

.essence-section {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  background: #f8f1ea;
}

.essence-video {
  width: 60%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  margin-left: auto;
}

.essence-content {
  flex: none;
  z-index: 2;
  width: auto;
  max-width: 320px;
  padding: 40px 30px;
  margin: 30px 0 30px 40px;
  color: #3d3530;
  text-align: left;
  border: 2px solid #c4b59a;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.essence-content .section-label.light {
  color: #8a7a6a;
}

.essence-content p {
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 200;
  line-height: 1.8;
  opacity: 0.85;
}

.essence-why-section {
  padding: 80px 0;
  background: #f8f1ea;
  position: relative;
}

.hp-essence-banner {
  background: #4e0806;
  padding: 36px 0;
  text-align: center;
}

.hp-essence-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.essence-why-section .section-label,
.essence-why-section .section-title {
  text-align: center;
}

.essence-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.essence-why-card {
  position: relative;
}

.essence-why-card-frame {
  position: relative;
  background: #4e0806;
  padding: 44px 28px 36px;
  text-align: center;
  border: 1px solid rgba(196, 181, 154, 0.25);
}

/* Outer decorative frame */
.essence-why-card-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(196, 181, 154, 0.15);
  pointer-events: none;
}

/* Corner ornaments */
.essence-why-corner-tl,
.essence-why-corner-br {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #c4b59a;
  border-style: solid;
  pointer-events: none;
  opacity: 0.4;
}

.essence-why-corner-tl {
  top: 8px;
  left: 8px;
  border-width: 1px 0 0 1px;
}

.essence-why-corner-br {
  bottom: 8px;
  right: 8px;
  border-width: 0 1px 1px 0;
}

.essence-why-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border: 1px solid rgba(196, 181, 154, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.essence-why-icon {
  font-size: 26px;
  color: #c4b59a;
  display: block;
  line-height: 1;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.essence-why-divider {
  width: 30px;
  height: 1px;
  background: rgba(196, 181, 154, 0.4);
  margin: 0 auto 20px;
}

.essence-why-card-frame h4 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 14px;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.essence-why-card-frame p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.hero-btn {
  display: inline-block;
  padding: 14px 52px;
  border: 1.5px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
  font-weight: 300;
  border-radius: 100px;
}

.hero-btn:hover {
  background: #fff;
  color: #111;
}

.page-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(180, 160, 130, 0.15) 0%, transparent 100%),
    linear-gradient(160deg, #f0ebe5 0%, #f5f0eb 40%, #f8f5f0 70%, #ede8e2 100%);
}

.page-hero .hero-content h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 8px;
  color: #3d3530;
}

.page-hero .hero-content p {
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 200;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.6;
  color: #7a7068;
}

section {
  padding: 80px 0;
}

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

.section-label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c4b59a;
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 16px;
  color: #3d3530;
}

.produits {
  background: #f5f0eb;
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 32px;
}

.produit-card {
  text-align: center;
}

.produit-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ede8e2;
  margin-bottom: 16px;
}

.produit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.produit-img:hover img {
  transform: scale(1.03);
}

.produit-img.img-fail {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 12px;
  min-height: 200px;
}

.produit-card h3 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: #3d3530;
}

.price {
  font-size: 22px;
  color: #8b7355;
  font-weight: 700;
  margin-bottom: 16px;
}

.produit-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-add {
  padding: 10px 28px;
  background: #3d3530;
  color: #fff;
  border: none;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-add:hover {
  background: #5a5048;
}

.btn-wa {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #25d366;
  transition: all 0.2s;
}

.btn-wa:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.footer {
  background: #fff;
  color: #3d3530;
  padding: 60px 20px 30px;
  font-size: 12px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.6;
  color: #8a8078;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3d3530;
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-col a {
  display: block;
  color: #8a8078;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-size: 12px;
}

.footer-col a:hover {
  color: #3d3530;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #e5ddd5;
  font-size: 11px;
  color: #b5aba3;
}

.cart {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
}

.cart.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.cart-header h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  line-height: 1;
}

.cart-close:hover {
  color: #111;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  text-align: center;
  color: #999;
  padding: 40px 0;
  font-size: 13px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  background: #f8f5f0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 12px;
  color: #777;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  background: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 2px;
}

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

.qty-value {
  font-size: 13px;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #999;
  font-size: 11px;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  text-decoration: underline;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: #3d3530;
  color: #fff;
  border: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 400;
}

.btn-primary:hover {
  background: #5a5048;
}

.btn-primary:disabled {
  opacity: 0.3;
  cursor: default;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1500;
  display: none;
}

.overlay.active {
  display: block;
}

.checkout-section {
  padding: 60px 0;
  background: #f8f5f0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.checkout-form h2,
.checkout-side h2 {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5ddd5;
  color: #3d3530;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a8078;
  margin-bottom: 6px;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0d8d0;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  color: #3d3530;
  border-radius: 0;
}

.field input:focus,
.field textarea:focus {
  border-color: #c4a97d;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #b5aba3;
}

.field textarea {
  resize: vertical;
  font-family: inherit;
}

.payment-box {
  background: #f0ebe5;
  padding: 20px;
  margin-top: 8px;
  margin-bottom: 24px;
  border: 1px solid #e5ddd5;
}

.payment-box h3 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
  color: #7a7068;
}

.payment-option {
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-check {
  flex-shrink: 0;
}

.payment-option strong {
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
  color: #3d3530;
}

.payment-option span {
  font-size: 12px;
  color: #8a8078;
}

.checkout-side {
  background: #f5f0eb;
  padding: 28px;
  position: sticky;
  top: 100px;
  border: 1px solid #e5ddd5;
}

.summary-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5ddd5;
}

.summary-item-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  background: #ede8e2;
}

.summary-item-info {
  flex: 1;
}

.summary-item-name {
  font-size: 12px;
  font-weight: 500;
  color: #3d3530;
}

.summary-item-meta {
  font-size: 11px;
  color: #9a9088;
  margin-top: 2px;
}

.summary-item-price {
  font-size: 12px;
  white-space: nowrap;
  color: #5a5048;
}

.summary-total {
  padding-top: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: #7a7068;
}

.summary-line.total {
  font-size: 16px;
  font-weight: 600;
  border-top: 1px solid #d5ccc4;
  padding-top: 12px;
  margin-top: 8px;
  color: #3d3530;
}

.cod-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #6b8f6b;
  margin-top: 16px;
  padding: 12px;
  background: rgba(107, 143, 107, 0.08);
  border-radius: 4px;
}

.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 48px;
  text-align: center;
  z-index: 2001;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.success-check {
  margin-bottom: 16px;
}

.success-modal h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.success-modal {
  background: #fff;
  border: 1px solid #e5ddd5;
}

.success-modal h2 {
  color: #3d3530;
}

.success-modal p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 4px;
}

.success-modal .btn-primary {
  margin-top: 24px;
  width: auto;
}

.contact-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(180, 160, 130, 0.1) 0%, transparent 100%),
    linear-gradient(135deg, #f0ebe5 0%, #f5f0eb 50%, #ede8e2 100%);
}

.contact-info {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 60px;
}

.contact-details {
  max-width: 420px;
  color: #3d3530;
}

.contact-details h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: #3d3530;
}

.contact-details .item {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.contact-details .item strong {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 400;
}

.contact-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #c4b59a;
  color: #3d3530;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
}

.contact-btn:hover {
  background: #3d3530;
  color: #fff;
  border-color: #3d3530;
}

.admin-wrap {
  display: flex;
  min-height: 100vh;
}

.admin-side {
  width: 220px;
  background: #111;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 42px;
  bottom: 0;
  z-index: 100;
}

.admin-side h2 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}

.admin-side nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.admin-side nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}

.admin-side nav a:hover,
.admin-side nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.back-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 11px;
  padding: 10px 12px;
  display: block;
  margin-top: 8px;
}

.back-link:hover {
  color: #fff;
}

.admin-main {
  margin-left: 220px;
  padding: 60px 32px 32px;
  flex: 1;
  width: calc(100% - 220px);
}

.admin-main h1 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-card {
  padding: 24px;
  background: #fafafa;
  border: 1px solid #eee;
}

.admin-card h3 {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
  font-weight: 400;
}

.admin-card .num {
  font-size: 36px;
  font-weight: 200;
  color: #111;
}

.admin-section {
  margin-bottom: 32px;
}

.admin-section h2 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  text-align: left;
  padding: 10px 12px;
  background: #f5f5f5;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  font-weight: 500;
  border-bottom: 2px solid #eee;
}

.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #fafafa;
}

.btn-small {
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #ddd;
  background: #fff;
  transition: all 0.2s;
}

.btn-small:hover {
  border-color: #111;
}

.btn-small.danger {
  color: #e74c3c;
  border-color: #e74c3c;
}

.btn-small.danger:hover {
  background: #e74c3c;
  color: #fff;
}

.btn-small.outline {
  background: none;
  border: 1px solid #ddd;
  color: #555;
}

.btn-small.outline:hover {
  border-color: #111;
  color: #111;
}

.status-select {
  padding: 4px 8px;
  font-size: 11px;
  border: 1px solid #ddd;
  background: #fff;
}

.status {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.status.pending {
  background: #fff3cd;
  color: #856404;
}

.status.confirmed {
  background: #cce5ff;
  color: #004085;
}

.status.shipped {
  background: #e2e3f1;
  color: #3f3d8c;
}

.status.delivered {
  background: #d4edda;
  color: #155724;
}

.status.cancelled {
  background: #f8d7da;
  color: #721c24;
}

.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-overlay.hidden {
  display: none;
}

.login-card {
  background: #fff;
  padding: 40px;
  width: 360px;
  max-width: 90%;
}

.login-card h2 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 4px;
}

.login-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  margin-bottom: 24px;
}

.login-error {
  color: #e74c3c;
  font-size: 12px;
  margin-bottom: 12px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}

/* ========== HOMEPAGE LUXURY SECTIONS ========== */

.hp-best-card {
  text-align: center;
}

.hp-best-card .hp-best-img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto 20px;
  aspect-ratio: 1;
  overflow: hidden;
}

.hp-best-card .hp-best-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hp-best-info {
  max-width: 280px;
  margin: 0 auto;
  text-align: left;
}

.hp-best-info h3 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 4px;
}

.hp-best-info .hp-best-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.hp-best-link {
  display: inline-block;
  margin-top: 4px;
}

.hp-best-sale .hp-best-img {
  position: relative;
}

.hp-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #c4b59a;
  color: #fff;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 400;
}

.hp-price-sale {
  display: block;
  margin-bottom: 20px;
}

.hp-price-original {
  font-size: 22px;
  color: #b5aba3;
  text-decoration: line-through;
  margin-right: 8px;
}

.hp-price-current {
  font-size: 34px;
  color: #8b7355;
  font-weight: 800;
}

.hp-reviews {
  padding: 100px 0;
  position: relative;
  background: #fbf9f7;
}

.hp-flowers-bg {
  position: relative;
  background: #f8f1ea;
}

.hp-flowers-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 241, 234, 0.7);
  z-index: 0;
  pointer-events: none;
}

.hp-flower-art {
  display: none;
}

.hp-flowers-bg .hp-reviews {
  position: relative;
  z-index: 1;
}

.hp-reviews-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
  padding: 0 60px;
}

.hp-review-card {
  text-align: center;
  padding: 48px 32px 36px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(61,53,48,0.06);
  border: 1px solid #f0ebe5;
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 200px;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}

.hp-review-card::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 52px;
  color: #c4b59a;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
  pointer-events: none;
}


.hp-review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #c4b59a;
  background: rgba(255,255,255,0.92);
  color: #8a7a6b;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(61,53,48,0.08);
  touch-action: manipulation;
}

.hp-review-arrow:hover {
  background: #c4b59a;
  color: #fff;
  border-color: #c4b59a;
  box-shadow: 0 4px 20px rgba(196,181,154,0.35);
  opacity: 1;
}

.hp-review-arrow-left {
  position: absolute;
  left: 8px;
}

.hp-review-arrow-right {
  position: absolute;
  right: 8px;
}

.hp-review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.hp-review-card p {
  font-size: 14px;
  line-height: 2;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hp-review-author {
  font-size: 11px;
  color: #c4b59a;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.hp-review-toggle {
  display: inline-block;
  padding: 12px 36px;
  background: transparent;
  color: #3d3530;
  border: 1px solid #c4b59a;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Playfair Display', serif;
}

.hp-review-toggle:hover {
  background: #3d3530;
  color: #fff;
  border-color: #3d3530;
}

.hp-review-form {
  max-width: 500px;
  margin: 24px auto 0;
  padding: 32px;
  background: #fff;
  display: none;
  text-align: left;
}

.hp-review-form.active {
  display: block;
}

.hp-review-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: #3d3530;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
}

.hp-review-field {
  margin-bottom: 16px;
}

.hp-review-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8078;
  margin-bottom: 6px;
}

.hp-review-field input,
.hp-review-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0d8d0;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #f8f5f0;
  color: #3d3530;
}

.hp-review-field input:focus,
.hp-review-field textarea:focus {
  border-color: #c4a97d;
}

.hp-star-select {
  display: flex;
  gap: 6px;
  font-size: 28px;
  color: #e5ddd5;
  cursor: pointer;
}

.hp-star-select span {
  transition: color 0.2s;
}

.hp-star-select span.active,
.hp-star-select span:hover {
  color: #c4b59a;
}

.hp-review-submit {
  width: 100%;
  padding: 12px;
  background: #3d3530;
  color: #fff;
  border: none;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Playfair Display', serif;
}

.hp-review-submit:hover {
  background: #5a5048;
}

.hp-review-msg {
  font-size: 12px;
  color: #8a8078;
  margin-top: 12px;
  text-align: center;
}

/* Spotlight editorial section — framed card */
.hp-spotlight {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: #f8f1ea;
}

.hp-spotlight .section-label,
.hp-spotlight .section-title {
  text-align: center;
}

.hp-spotlight-card {
  max-width: 1000px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.hp-spotlight-card-inner {
  position: relative;
  background: #fff;
  border: 2px solid #c4b59a;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
}

/* Ornate corners */
.hp-spotlight-card-inner::before,
.hp-spotlight-card-inner::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: #c4b59a;
  border-style: solid;
  pointer-events: none;
}
.hp-spotlight-card-inner::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}
.hp-spotlight-card-inner::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}

/* Inner corner accents */
.hp-spotlight-corner-tl,
.hp-spotlight-corner-br {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #c4b59a;
  border-style: solid;
  pointer-events: none;
  opacity: 0.5;
}
.hp-spotlight-corner-tl {
  top: 16px;
  left: 16px;
  border-width: 1px 0 0 1px;
}
.hp-spotlight-corner-br {
  bottom: 16px;
  right: 16px;
  border-width: 0 1px 1px 0;
}

.hp-spotlight-visual {
  position: relative;
}

.hp-spotlight-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.hp-spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-spotlight-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #c4b59a;
  color: #fff;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 22px;
  font-weight: 500;
}

.hp-spotlight-info {
  text-align: left;
}

.hp-spotlight-cat {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c4b59a;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}

.hp-spotlight-title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  color: #3d3530;
  margin-bottom: 8px;
  line-height: 1.25;
  font-family: 'Playfair Display', serif;
}

.hp-spotlight-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #8a8078;
  margin-bottom: 32px;
  font-weight: 300;
}

.hp-spotlight-divider {
  width: 40px;
  height: 1px;
  background: #c4b59a;
  margin: 0 0 28px;
  opacity: 0.5;
}

.hp-spotlight-prices {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.hp-spotlight-original {
  font-size: 18px;
  color: #b5aba3;
  text-decoration: line-through;
  font-weight: 300;
}

.hp-spotlight-current {
  font-size: 34px;
  color: #8b7355;
  font-weight: 500;
  letter-spacing: 1px;
}

.hp-spotlight-btn {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: #3d3530;
  text-decoration: none;
  padding: 16px 52px;
  transition: all 0.4s;
  position: relative;
}

.hp-spotlight-btn:hover {
  background: #8b7355;
}

@media (max-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

  .hp-products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hp-philo-inner {
    grid-template-columns: 1fr;
  }

  .hp-philo-text {
    padding: 60px 32px;
    text-align: center;
  }

  .hp-philo-text p {
    max-width: 100%;
  }

  .hp-philo-visual {
    min-height: 240px;
  }

  .admin-side {
    width: 100%;
    position: static;
    min-height: auto;
  }

  .admin-main {
    margin-left: 0;
    width: 100%;
    padding: 24px 16px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    justify-content: center;
    padding: 40px 20px;
  }

  .cart {
    width: 100%;
    right: -100%;
  }
}

/* Product Detail Page */
.detail-page {
  padding: 40px 20px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.detail-back {
  margin-bottom: 32px;
}
.back-link {
  color: #3d3530;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.back-link:hover {
  opacity: 1;
}
.detail-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.detail-image {
  flex: 1;
  min-width: 0;
}
.detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.detail-info {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
}
.detail-cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c4b59a;
  margin-bottom: 12px;
}
.detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #3d3530;
  margin: 0 0 16px;
  line-height: 1.3;
}
.detail-price {
  font-size: 36px;
  font-weight: 800;
  color: #8b7355;
  margin-bottom: 20px;
}
.detail-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 28px;
}
.detail-qty {
  margin-bottom: 24px;
}
.detail-qty > span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3d3530;
  margin-bottom: 10px;
}
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0d8d0;
  border-radius: 6px;
  overflow: hidden;
}
.qty-selector button {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #3d3530;
  transition: background 0.2s;
}
.qty-selector button:hover {
  background: #f0ebe5;
}
.qty-selector span {
  width: 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #3d3530;
}
.detail-add {
  width: 100%;
  margin-bottom: 12px;
}
.detail-wa {
  width: 100%;
}
@media (max-width: 768px) {
  .detail-content {
    flex-direction: column;
    gap: 32px;
  }
  .detail-info h1 {
    font-size: 24px;
  }
  .detail-price {
    font-size: 26px;
  }

  .essence-section {
    flex-direction: column;
    padding: 24px 16px;
  }

  .essence-video {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
  }

  .essence-content {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    margin: 0 0 20px 0;
    border-width: 1px;
  }

  .essence-why {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .essence-why-card-frame {
    padding: 32px 20px 28px;
  }

  .essence-why-card-frame p {
    font-size: 12px;
  }

  .essence-why-corner-tl,
  .essence-why-corner-br {
    display: none;
  }


  .nav-toggle {
    display: none;
  }

  .header {
    position: relative;
  }

  .header-transparent {
    position: absolute;
  }

  .header-inner {
    padding: 8px 14px;
  }

  .logo img {
    height: 40px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero-content h1 {
    white-space: nowrap;
  }

  .top-bar {
    font-size: 9px;
    padding: 6px 14px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 48px 0;
  }

  .hero {
    height: 100vh;
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 32px;
    white-space: nowrap;
  }

  .top-bar {
    font-size: 8px;
    padding: 6px 12px;
    letter-spacing: 1px;
  }

  .produits-grid {
    gap: 20px;
  }

  .hp-best-info h3 {
    font-size: 18px;
  }

  .hp-spotlight-card-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
  }

  .hp-spotlight-image {
    aspect-ratio: 4 / 5;
  }

  .hp-spotlight-corner-tl,
  .hp-spotlight-corner-br {
    display: none;
  }

  .hp-philo-text h2 {
    font-size: 22px;
  }

  .hp-review-card p {
    font-size: 13px;
  }

  .hp-review-card {
    padding: 40px 20px 28px;
    min-height: 180px;
  }

  .hp-review-card::before {
    top: 2px;
    font-size: 42px;
  }

  .hp-reviews-carousel {
    padding: 0 50px;
    gap: 10px;
  }

  .hp-review-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
    background: rgba(255,255,255,0.85);
  }

  .hp-review-arrow-left {
    left: 4px;
  }

  .hp-review-arrow-right {
    right: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .login-card {
    padding: 24px;
  }
}
