/* ===== CSS Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a961;
  --gold-dark: #8b6914;
  --gold-light: #e0c989;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --light: #f5f1ea;
  --gray: #888;
  --gray-light: #ccc;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== Preloader ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; letter-spacing: 0.5em;
  color: var(--gold);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex; align-items: center;
  transition: all 0.4s var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.15em;
}
.nav-logo span { color: var(--light); font-size: 0.8rem; letter-spacing: 0.3em; font-weight: 300; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--light); text-decoration: none;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 300; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-whatsapp {
  display: flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: white; text-decoration: none;
  padding: 0.6rem 1.5rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  transition: all 0.3s;
}
.nav-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 25px; height: 2px; background: var(--gold); transition: 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.mobile-lang-switcher { display: none; }

/* ===== Nav Right (Lang Switcher + WhatsApp) ===== */
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-switcher { display: flex; gap: 0.25rem; }
.lang-btn {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,169,97,0.2);
  color: var(--gray-light); padding: 0.35rem 0.7rem; border-radius: 4px;
  font-size: 0.75rem; cursor: pointer; transition: all 0.3s; font-family: 'Jost', sans-serif;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn.active { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 500; }

/* ===== Hero ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 30%, #0a0a0a 60%, #120e06 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.08) 0%, transparent 70%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23c9a961' stroke-width='0.3' opacity='0.05'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 2rem; }
.hero-tagline {
  font-size: 0.85rem; letter-spacing: 0.4em; color: var(--gold);
  margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300; line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-subtitle {
  font-size: 1.1rem; color: var(--gray-light); font-weight: 300;
  letter-spacing: 0.03em; line-height: 1.8;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}

/* ===== Hero Category Navigation ===== */
.hero-cat-nav {
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
  margin-top: 2.5rem;
}
.hero-cat-prompt {
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; font-weight: 400;
}
.hero-cat-list {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
}
.hero-cat-chip {
  display: inline-block; padding: 0.6rem 1.8rem;
  border: 1px solid rgba(201,169,97,0.3); border-radius: 50px;
  color: var(--gray-light); text-decoration: none;
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.08em;
  transition: all 0.4s var(--transition);
  background: rgba(255,255,255,0.03); backdrop-filter: blur(4px);
}
.hero-cat-chip:hover {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
  transform: translateY(-3px); box-shadow: 0 8px 25px rgba(201,169,97,0.25);
}
.hero-cat-chip:active { transform: translateY(-1px); }

/* ===== Hero Search ===== */
.hero-search {
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
  margin-top: 2.5rem;
}
.search-box {
  display: flex; align-items: center; max-width: 500px; margin: 0 auto;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,97,0.3); border-radius: 50px;
  padding: 0.4rem 0.4rem 0.4rem 1.2rem; transition: border-color 0.3s;
}
.search-box:focus-within { border-color: var(--gold); }
.search-icon { color: var(--gray); flex-shrink: 0; margin-right: 0.6rem; }
.search-box input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--light); font-size: 0.95rem; font-family: 'Jost', sans-serif;
  padding: 0.6rem 0;
}
.search-box input::placeholder { color: var(--gray); }
.search-btn {
  background: var(--gold); color: var(--dark); border: none;
  padding: 0.7rem 1.8rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.3s; font-family: 'Jost', sans-serif;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--gold-light); }

/* ===== Search Results Overlay ===== */
.search-overlay { display: none; position: fixed; inset: 0; z-index: 4000; }
.search-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
.search-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(8px); }
.search-results-panel {
  position: relative; z-index: 1; background: var(--dark-2);
  border: 1px solid rgba(201,169,97,0.2); border-radius: 8px;
  width: 92%; max-width: 1100px; margin-top: 5vh; max-height: 88vh; overflow-y: auto;
  padding: 2rem;
}
.search-results-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.search-results-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); font-weight: 500; }
.search-close {
  background: rgba(255,255,255,0.06); color: #fff; border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer; transition: background 0.3s;
}
.search-close:hover { background: rgba(231,76,60,0.8); }
.search-results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
@media (max-width: 1024px) { .search-results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .search-results-grid { grid-template-columns: 1fr; }
  .search-results-panel { padding: 1.5rem; margin-top: 3vh; }
}

.hero-actions {
  display: flex; gap: 1.5rem; justify-content: center; margin-top: 3rem;
  opacity: 0; animation: fadeUp 1s 0.9s forwards; flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold); color: var(--dark); text-decoration: none;
  padding: 1rem 2.5rem; font-size: 0.85rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500; border: 1px solid var(--gold);
  transition: all 0.4s var(--transition);
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline {
  display: flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--light); text-decoration: none;
  padding: 1rem 2.5rem; font-size: 0.85rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500; border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.4s var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gray); }
.scroll-line { width: 1px; height: 40px; background: var(--gold); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Brand Strip ===== */
.brand-strip { overflow: hidden; padding: 2.5rem 0; border-top: 1px solid rgba(201,169,97,0.1); border-bottom: 1px solid rgba(201,169,97,0.1); background: var(--dark-2); }
.brand-track { display: flex; gap: 4rem; white-space: nowrap; animation: scroll 30s linear infinite; }
.brand-track span {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  color: var(--gray); letter-spacing: 0.2em; font-weight: 400;
  transition: color 0.3s;
}
.brand-track span:hover { color: var(--gold); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Category Sections ===== */
.category-section { padding: 7rem 3rem; max-width: 1400px; margin: 0 auto; }
.category-header { text-align: center; margin-bottom: 4rem; }
.cat-number {
  font-family: 'Cormorant Garamond', serif; font-size: 0.9rem;
  color: var(--gold); letter-spacing: 0.3em; display: block; margin-bottom: 1rem;
}
.cat-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
.cat-desc { color: var(--gray); max-width: 600px; margin: 0 auto; font-weight: 300; font-size: 1.05rem; }

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.product-card {
  background: var(--dark-2); border-radius: 4px; overflow: hidden;
  cursor: pointer; transition: all 0.5s var(--transition);
  border: 1px solid rgba(255,255,255,0.04);
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(201,169,97,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.product-img-wrap {
  width: 100%; height: 300px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}
.product-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--transition);
}
.product-card:hover .product-img { transform: scale(1.08); }
.product-img-wrap::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at center, transparent 50%, rgba(0,0,0,0.3) 100%);
}
.product-img-wrap.no-img { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); }
.product-info { padding: 1.8rem; }
.product-cat { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.product-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; margin: 0.5rem 0; }
.product-price { color: var(--gray); font-size: 0.9rem; margin-bottom: 1rem; }
.product-cta { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: gap 0.3s; display: inline-block; }
.product-card:hover .product-cta { transform: translateX(5px); }
.product-img-wrap .img-count {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(0,0,0,0.6); color: #fff; border-radius: 50%;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; backdrop-filter: blur(4px);
}
.product-summary { color: var(--gray); font-size: 0.82rem; font-weight: 300; line-height: 1.5; margin-bottom: 0.6rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== Product Detail Modal ===== */
.product-detail-modal { display: none; position: fixed; inset: 0; z-index: 5000; }
.product-detail-modal.active { display: flex; align-items: center; justify-content: center; }
.detail-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); }
.detail-container {
  position: relative; z-index: 1; background: var(--dark-2);
  border: 1px solid rgba(201,169,97,0.2); border-radius: 8px;
  width: 92%; max-width: 900px; max-height: 92vh; overflow-y: auto;
  display: flex; flex-direction: row;
}
.detail-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  background: rgba(0,0,0,0.5); color: #fff; border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.detail-close:hover { background: rgba(231,76,60,0.8); }
.detail-gallery { flex: 1.2; min-width: 0; display: flex; flex-direction: column; }
.detail-main-img-wrap { position: relative; width: 100%; height: 500px; background: #111; overflow: hidden; border-radius: 8px 0 0 0; }
.detail-main-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.detail-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.8rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.detail-nav:hover { background: rgba(201,169,97,0.6); }
.detail-prev { left: 12px; }
.detail-next { right: 12px; }
.detail-img-counter {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6); color: #fff; padding: 0.3rem 0.8rem;
  border-radius: 20px; font-size: 0.8rem;
}
.detail-thumbs { display: flex; gap: 0.5rem; padding: 0.6rem; overflow-x: auto; }
.detail-thumb { flex-shrink: 0; width: 64px; height: 64px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: 0.5; transition: all 0.3s; }
.detail-thumb.active { border-color: var(--gold); opacity: 1; }
.detail-thumb:hover { opacity: 1; }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-info { flex: 0.8; min-width: 0; padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.detail-cat { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.detail-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; margin: 0.5rem 0 1rem; }
.detail-summary { color: var(--gray); font-size: 0.95rem; font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; white-space: pre-wrap; }
.detail-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 2rem; }
.detail-wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem; justify-content: center;
  background: #25D366; color: white; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500; transition: all 0.3s; width: fit-content;
}
.detail-wa-btn:hover { background: #1fa854; transform: scale(1.03); }

@media (max-width: 768px) {
  .detail-container { flex-direction: column; max-height: 95vh; }
  .detail-main-img-wrap { height: 350px; border-radius: 8px 8px 0 0; }
  .detail-info { padding: 1.5rem; }
  .detail-name { font-size: 1.5rem; }
}

/* ===== About / Trust ===== */
.about-section { padding: 5rem 3rem; background: var(--dark-2); border-top: 1px solid rgba(201,169,97,0.1); border-bottom: 1px solid rgba(201,169,97,0.1); }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.about-item { text-align: center; }
.about-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.about-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 0.5rem; }
.about-item p { color: var(--gray); font-size: 0.9rem; font-weight: 300; }

/* ===== Contact Section ===== */
.contact-section { padding: 8rem 3rem; text-align: center; }
.contact-inner { max-width: 700px; margin: 0 auto; }
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; margin-bottom: 1.5rem; }
.contact-subtitle { color: var(--gray); font-size: 1.1rem; font-weight: 300; line-height: 1.8; margin-bottom: 3rem; }
.btn-whatsapp-big {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: #25D366; color: white; text-decoration: none;
  padding: 1.2rem 3rem; border-radius: 50px;
  font-size: 1rem; font-weight: 500; letter-spacing: 0.05em;
  transition: all 0.4s var(--transition); box-shadow: 0 10px 30px rgba(37,211,102,0.2);
}
.btn-whatsapp-big:hover { background: #128C7E; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37,211,102,0.3); }

/* ===== Footer ===== */
.footer { background: var(--dark-2); border-top: 1px solid rgba(201,169,97,0.1); padding: 4rem 3rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-brand p { color: var(--gray); font-weight: 300; }
.footer-links h4 { font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links a { display: block; color: var(--gray-light); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.6rem; font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }

/* ===== Floating WhatsApp ===== */
.float-whatsapp {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 20px rgba(37,211,102,0.4);
  transition: all 0.3s; animation: floatPulse 2s ease infinite;
}
.float-whatsapp:hover { transform: scale(1.1); background: #128C7E; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 5px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 5px 30px rgba(37,211,102,0.7); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.5rem; }
  .mobile-lang-switcher { display: flex; gap: 0.5rem; margin-top: 1rem; }
  .mobile-lang-switcher .lang-btn { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-whatsapp span { display: none; }
  .nav-whatsapp { padding: 0.5rem 0.8rem; }
  .lang-switcher { gap: 0.15rem; }
  .lang-btn { padding: 0.25rem 0.45rem; font-size: 0.65rem; }
  .nav-right { gap: 0.4rem; }
  .category-section { padding: 5rem 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; justify-content: center; }
  .hero-cat-list { gap: 0.5rem; }
  .hero-cat-chip { padding: 0.45rem 1.2rem; font-size: 0.75rem; }
  .hero-cat-prompt { font-size: 0.7rem; margin-bottom: 0.8rem; }
  .hero-cat-nav { margin-top: 1.8rem; }
  .hero-search { margin-top: 1.8rem; }
  .search-box { padding: 0.3rem 0.3rem 0.3rem 1rem; }
  .search-btn { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
  .search-icon { width: 18px; height: 18px; margin-right: 0.4rem; }
  .contact-section { padding: 5rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .float-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ===== RTL Support for Arabic ===== */
html[dir="rtl"] body { font-family: 'Noto Naskh Arabic', 'Jost', sans-serif; }
html[dir="rtl"] .nav-logo { letter-spacing: 0; }
html[dir="rtl"] .nav-links a { letter-spacing: 0; }
html[dir="rtl"] .nav-links a::after { left: auto; right: 0; }
html[dir="rtl"] .product-card:hover .product-cta { transform: translateX(-5px); }
html[dir="rtl"] .float-whatsapp { right: auto; left: 30px; }
@media (max-width: 768px) {
  html[dir="rtl"] .float-whatsapp { right: auto; left: 20px; }
}
