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

:root {
  --primary: #C8856A;
  --primary-light: #E8A88F;
  --secondary: #F7EDE4;
  --dark: #1A1A1A;
  --text: #555;
  --border: #E8D5C8;
  --gold: #C9A96E;
  --white: #fff;
  --success: #4CAF50;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

/* ─── NAV SLIDE MENU ─── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 149;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

body.nav-menu-open { overflow: hidden; }

.nav-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 270px;
  background: #fff;
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 30px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.nav-menu.open { transform: translateX(0); }

.nav-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem 1rem;
  border-bottom: 1px solid var(--border);
}

.nav-menu-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--dark);
}

.nav-menu-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #999;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-menu-close:hover { color: var(--dark); }

.nav-menu-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.5rem;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #f5ede8;
  transition: background 0.18s, color 0.18s;
}
.nav-menu-link i {
  width: 18px;
  text-align: center;
  color: var(--primary);
  font-size: 0.85rem;
}
.nav-menu-link:hover {
  background: var(--secondary);
  color: var(--primary);
}
.nav-menu-link-cat {
  padding-left: 2.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #555;
}

/* ─── NAVBAR ─── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.nav-logo {
  text-align: center;
}

.nav-logo h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  letter-spacing: 0.25em;
  color: var(--dark);
  font-weight: 500;
  line-height: 1;
}

.nav-logo span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--primary);
  text-transform: uppercase;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--dark);
  padding: 0.5rem;
  transition: color 0.2s;
}

.icon-btn:hover { color: var(--primary); }

.cart-btn { position: relative; }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #EDD5C0 50%, #E8C8B8 100%);
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.hero-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content > p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.btn-hero {
  display: inline-block;
  background: var(--dark);
  color: white;
  padding: 1rem 3rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn-hero:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ─── TOP ANNOUNCEMENT BANNER ─── */
.top-banner {
  background: #1A1A1A;
  color: #fff;
  text-align: center;
  padding: 0.55rem 3rem;
  font-size: 0.82rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  letter-spacing: 0.04em;
  z-index: 1000;
}
body.has-banner { padding-top: 38px; }
.top-banner-close {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.6;
  font-size: 0.85rem;
  padding: 0.2rem 0.4rem;
  line-height: 1;
}
.top-banner-close:hover { opacity: 1; }

/* ─── DELIVERY BANNER ─── */
.delivery-banner {
  background: var(--dark);
  color: #ccc;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

.delivery-banner span { display: flex; align-items: center; gap: 0.5rem; }
.delivery-banner i { color: var(--primary); }

/* ─── PRODUCTS ─── */
.products-section {
  padding: 4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.section-line {
  width: 50px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto;
}

/* ─── FILTERS ─── */
.filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

/* ─── PRODUCT GRID ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

/* ─── PRODUCT CARD ─── */
.product-card {
  background: white;
  border: 1px solid #f0e8e0;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.09);
}

.product-image {
  position: relative;
  overflow: hidden;
  padding-top: 115%;
  background: var(--secondary);
}

.product-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
}

.badge-promo { background: #c0392b; }
.badge-bestseller { background: var(--gold); }

.product-info {
  padding: 1.2rem 1.1rem 1.1rem;
}

.product-category {
  font-size: 0.68rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.product-price {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 700;
}

.product-price-old {
  font-size: 0.88rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 400;
}

.product-price-pct {
  font-size: 0.72rem;
  font-weight: 700;
  background: #ef4444;
  color: white;
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
}

.sizes-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.45rem;
}

.product-sizes {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.size-btn {
  border: 1px solid var(--border);
  background: white;
  padding: 0.3rem 0.55rem;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--text);
  min-width: 34px;
  text-align: center;
}

.size-btn:hover { border-color: var(--primary); color: var(--primary); }
.size-btn.selected { background: var(--dark); color: white; border-color: var(--dark); }

.btn-add-cart {
  display: block;
  width: 100%;
  background: var(--dark);
  color: white;
  border: none;
  padding: 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-add-cart:hover { background: var(--primary); }

.product-image-link { display: block; text-decoration: none; }
.product-name-link  { text-decoration: none; color: inherit; }
.product-name-link:hover .product-name { color: var(--primary); }

/* ─── CART SIDEBAR ─── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -430px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: white;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.1);
}

.cart-sidebar.open { right: 0; }
.cart-overlay.open { display: block; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.6rem;
}

.cart-empty {
  text-align: center;
  color: #bbb;
  margin-top: 4rem;
}

.cart-empty i {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.cart-empty p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f5ede4;
  align-items: flex-start;
}

.cart-item-img {
  width: 68px;
  height: 80px;
  object-fit: cover;
  background: var(--secondary);
  flex-shrink: 0;
}

.cart-item-details { flex: 1; }

.cart-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 0.4rem;
}

.cart-item-price {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.qty-btn {
  background: var(--secondary);
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover { background: var(--border); }
.qty-num { font-size: 0.85rem; font-weight: 700; min-width: 20px; text-align: center; }

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  font-size: 0.8rem;
  padding: 0.2rem;
  transition: color 0.2s;
}

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

.cart-footer {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.btn-order {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-order:hover { background: var(--dark); }

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: white;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem 2rem 2.5rem;
  animation: slideUp 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
}

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

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group label i { color: var(--primary); font-size: 0.85rem; }

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s;
  background: #fdfaf7;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
}

.form-group textarea {
  height: 78px;
  resize: vertical;
}

.order-summary-box {
  background: var(--secondary);
  padding: 1.3rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--primary);
}

.order-summary-box h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.order-total-line {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  color: var(--dark);
}

.order-total-line strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.cod-badge {
  margin-top: 0.8rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 0.5rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2px;
}

.btn-submit {
  width: 100%;
  background: var(--dark);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-submit:hover { background: var(--primary); }

/* ─── SUCCESS ─── */
.modal-success {
  text-align: center;
  padding: 3.5rem 2rem;
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.2rem;
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.modal-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 400;
}

.modal-success p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.success-order-summary {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  margin: 0 0 1.5rem;
  text-align: left;
}
.success-order-item {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.22rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.success-order-item:last-child { border-bottom: none; }
.success-order-total {
  display: flex;
  justify-content: flex-end;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary, #C8856A);
  padding-top: 0.45rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 3.5rem 2rem 1.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: white;
  letter-spacing: 0.2em;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-info h4,
.footer-contact h4 {
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-info p,
.footer-contact p {
  font-size: 0.84rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-info i,
.footer-contact i {
  color: var(--primary);
  width: 16px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #555;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-info { padding: 0.9rem 0.8rem; }
  .product-name { font-size: 1rem; }

  .cart-sidebar { width: 100vw; }

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

  .delivery-banner { gap: 1.2rem; font-size: 0.72rem; }

  .hero-content h2 { font-size: 2rem; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .products-section { padding: 3rem 0.75rem; }
  .navbar { padding: 0 1rem; }
  .nav-logo h1 { font-size: 1.3rem; }
  .product-info { padding: 0.6rem 0.5rem; }
  .product-name { font-size: 0.82rem; }
  .product-price { font-size: 0.88rem; }
  .btn-add-cart { font-size: 0.72rem; padding: 0.45rem; }
}

/* ─── HOMEPAGE MULTI-SECTIONS ─── */
#productsGrid.multi-section { display: block; }
.homepage-section-block { margin-bottom: 3rem; }
.homepage-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.homepage-section-title h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
}
.homepage-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border, #e8d5c8);
}
.products-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .products-sub-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 400px) {
  .products-sub-grid { gap: 0.5rem; }
}

/* ═══════════════════════════════════════
   LOGO
════════════════════════════════════════ */
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  overflow: hidden;
  max-height: 68px;
}

.site-logo-img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: background 0.3s;
}

.nav-logo-link:hover .logo-mark { background: var(--dark); }

.nav-retour-link {
  display: none;
  text-decoration: none;
  color: var(--dark);
}

@media (min-width: 600px) {
  .nav-retour-link { display: flex; }
}

/* ═══════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 380px;
  overflow: hidden;
  background: var(--dark);
}

.slides-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.5) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 640px;
}

.slide-tag {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--primary-light, #e8a88f);
  margin-bottom: 1rem;
}

.slide-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-content p {
  font-size: clamp(0.85rem, 2vw, 1rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-slide {
  display: inline-block;
  background: white;
  color: var(--dark);
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-slide:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.25s;
  z-index: 10;
}

.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-prev { left: 1.2rem; }
.slider-next { right: 1.2rem; }

@media (max-width: 480px) {
  .slider-arrow { display: none; }
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.sdot.active {
  background: white;
  width: 22px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════
   MOBILE IMPROVEMENTS
════════════════════════════════════════ */
@media (max-width: 600px) {
  .delivery-banner { gap: 0.8rem; padding: 0.7rem 1rem; font-size: 0.7rem; }
  .section-header h2 { font-size: 1.6rem; }
  .cart-sidebar { width: 100vw; max-width: 100vw; }
  .modal { padding: 1.5rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .product-name { font-size: 0.92rem; }
  .product-price { font-size: 1rem; }
  .size-btn { padding: 0.28rem 0.5rem; font-size: 0.72rem; min-width: 30px; }
}

/* ── City autocomplete dropdown ── */
.city-dropdown {
  display: none;
  position: fixed;
  z-index: 9999;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  max-height: 220px;
  overflow-y: auto;
  font-size: 0.82rem;
}

.city-dd-item {
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1A1A1A;
}

.city-dd-item:hover {
  background: #FFF7ED;
  color: #C8856A;
}

/* ═══════════════════════════════════════
   LANGUAGE TOGGLE BUTTON
═══════════════════════════════════════ */
.lang-btn {
  font-family: 'Cairo', 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  min-width: 36px;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
}
.lang-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ═══════════════════════════════════════
   RTL  (Arabic)
═══════════════════════════════════════ */
[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] button,
[dir="rtl"] label {
  font-family: 'Cairo', sans-serif;
}

/* Keep brand name font unchanged */
[dir="rtl"] h1,
[dir="rtl"] .nav-menu-logo {
  font-family: 'Cairo', 'Cormorant Garamond', serif;
  letter-spacing: 0.05em;
}

/* Nav menu slides from right in RTL */
[dir="rtl"] .nav-menu {
  left: auto;
  right: 0;
  transform: translateX(100%);
  box-shadow: -4px 0 30px rgba(0,0,0,0.12);
}
[dir="rtl"] .nav-menu.open {
  transform: translateX(0);
}

/* Slide content align right */
[dir="rtl"] .slide-content {
  text-align: right;
}

/* Product layout — swap image and info columns */
[dir="rtl"] .product-layout {
  direction: rtl;
}

/* Form inputs text direction */
[dir="rtl"] input,
[dir="rtl"] textarea {
  direction: rtl;
  text-align: right;
}

/* Phone stays LTR */
[dir="rtl"] input[type="tel"] {
  direction: ltr;
  text-align: left;
}

/* Breadcrumb arrows flip */
[dir="rtl"] .breadcrumb .fa-chevron-right {
  transform: scaleX(-1);
}

/* Back arrow in product page flips */
[dir="rtl"] .nav-left .fa-arrow-left {
  transform: scaleX(-1);
}

/* Success back button arrow flips */
[dir="rtl"] .btn-back-shop .fa-arrow-left {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  [dir="rtl"] .nav-menu { width: 80vw; }
}
