/* ===== ÉLORA Shared Styles ===== */
:root {
  --bg: #FAF9F7;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --accent: #8B6F5A;
  --accent-dark: #6B5345;
  --beige: #E8E0D5;
  --border: #E0DDD7;
  --white: #FFFFFF;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

/* Announcement Bar */
.announcement {
  background: var(--text); color: var(--white);
  text-align: center; padding: 10px;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
}

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; max-width: 1300px; margin: 0 auto;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  position: relative; padding: 4px 0; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; letter-spacing: 4px; color: var(--text);
}
.logo span { color: var(--accent); }
.logo-img { height: 28px; display: block; }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a { font-size: 18px; color: var(--text); transition: var(--transition); }
.nav-icons a:hover { color: var(--accent); }
.cart-badge {
  position: absolute; top: -8px; right: -8px;
  background: var(--accent); color: var(--white); border-radius: 50%;
  width: 18px; height: 18px; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block; padding: 16px 44px;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--white); color: var(--white); background: transparent;
  cursor: pointer; transition: var(--transition); font-family: 'Lato', sans-serif;
}
.btn:hover { background: var(--white); color: var(--text); }
.btn-dark { border-color: var(--text); color: var(--text); }
.btn-dark:hover { background: var(--text); color: var(--white); }
.btn-solid { background: var(--text); border-color: var(--text); color: var(--white); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); }

/* Sections */
.section { padding: 100px 0; }
.section-beige { background: #F3EFEA; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.section-header h2 { font-size: 48px; line-height: 1.2; }
.section-header p { color: var(--muted); margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #E8E0D5 0%, #D4C5B9 100%);
  text-align: center; padding: 80px 40px 60px;
}
.page-banner h1 { font-size: 52px; color: var(--text); margin-bottom: 12px; }
.page-banner p { color: var(--muted); font-size: 17px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-top: 16px; letter-spacing: 1px; }
.breadcrumb a:hover { color: var(--accent); }

/* Product Grid */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.product-card {
  background: var(--white); border-radius: 4px; overflow: hidden; transition: var(--transition);
}
.product-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.product-img { position: relative; height: 380px; overflow: hidden; background: #F5F3F0; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--text); color: var(--white);
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px;
}
.product-badge.sale { background: #C2185B; }
.product-badge.new { background: var(--accent); }
.product-fav {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text); cursor: pointer;
  transition: var(--transition); opacity: 0; transform: translateY(-8px);
}
.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-fav:hover { background: var(--accent); color: var(--white); }
.product-info { padding: 20px; text-align: center; }
.product-info .brand { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.product-info h4 { font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.product-price { font-size: 16px; font-weight: 700; color: var(--text); }
.product-price .original { text-decoration: line-through; color: #C0C0C0; font-weight: 400; margin-right: 8px; font-size: 14px; }
.product-price .discount { color: #C2185B; }
.product-colors { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.color-dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #DDD; cursor: pointer; transition: var(--transition); }
.color-dot:hover { transform: scale(1.2); }
.product-actions { margin-top: 14px; display: flex; gap: 8px; justify-content: center; }
.product-actions button {
  padding: 8px 24px; border: 1px solid var(--text); background: transparent;
  color: var(--text); font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); font-family: 'Lato', sans-serif;
}
.product-actions button:hover { background: var(--text); color: var(--white); }
.btn-link {
  display: inline-block; padding: 8px 24px; border: 1px solid var(--text); background: transparent;
  color: var(--text) !important; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); font-family: 'Lato', sans-serif; text-decoration: none;
}
.btn-link:hover { background: var(--text); color: var(--white) !important; }

/* Category Grid */
.categories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.category-card { position: relative; height: 480px; overflow: hidden; cursor: pointer; border-radius: 4px; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.category-card:hover img { transform: scale(1.06); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.6) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; transition: var(--transition);
}
.category-overlay h3 { font-size: 32px; color: var(--white); margin-bottom: 8px; }
.category-overlay span { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* Content Page */
.content-page { padding: 80px 0; }
.content-page .container { max-width: 900px; }
.content-page h2 { font-size: 36px; margin: 40px 0 16px; }
.content-page h2:first-child { margin-top: 0; }
.content-page p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.content-page ul { margin: 16px 0 24px 20px; }
.content-page li { color: var(--muted); margin-bottom: 10px; line-height: 1.7; }
.content-page strong { color: var(--text); }

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item summary { font-size: 18px; cursor: pointer; font-weight: 600; list-style: none; position: relative; padding-right: 40px; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 24px; color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding-top: 16px; color: var(--muted); line-height: 1.8; }

/* Size Guide Table */
.size-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.size-table th, .size-table td { padding: 14px 16px; text-align: center; border: 1px solid var(--border); }
.size-table th { background: var(--beige); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.size-table td { color: var(--muted); }

/* Contact Form */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label { display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border);
  background: var(--white); font-size: 15px; font-family: 'Lato', sans-serif;
  outline: none; transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* Track Order */
.track-form { max-width: 500px; margin: 0 auto; text-align: center; }
.track-form input { width: 100%; padding: 16px 20px; border: 1px solid var(--border); font-size: 16px; font-family: 'Lato', sans-serif; outline: none; margin-bottom: 20px; }
.track-form input:focus { border-color: var(--accent); }
.track-result { margin-top: 32px; padding: 24px; background: var(--beige); border-radius: 4px; display: none; }
.track-step { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.track-step:last-child { border-bottom: none; }
.track-step .step-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.track-step.done .step-icon { background: #4CAF50; }
.track-step .step-info { text-align: left; }
.track-step .step-info strong { display: block; font-size: 15px; }
.track-step .step-info span { font-size: 13px; color: var(--muted); }

/* Features */
.features {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.feature { text-align: center; padding: 20px; }
.feature .icon { font-size: 36px; margin-bottom: 14px; }
.feature h4 { font-size: 18px; margin-bottom: 6px; font-weight: 600; }
.feature p { font-size: 13px; color: var(--muted); }

/* Job Cards */
.job-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 32px; margin-bottom: 20px; transition: var(--transition); }
.job-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.job-card .job-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.job-card h3 { font-size: 24px; }
.job-meta { display: flex; gap: 20px; font-size: 13px; color: var(--muted); }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-card p { color: var(--muted); margin-bottom: 16px; }

/* Press Cards */
.press-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.press-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 32px; transition: var(--transition); }
.press-card:hover { border-color: var(--accent); }
.press-card .source { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.press-card h3 { font-size: 22px; margin-bottom: 12px; }
.press-card p { color: var(--muted); font-size: 14px; }
.press-card .date { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* Footer */
footer { background: #161412; color: var(--white); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--white); font-size: 28px; margin-bottom: 20px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin-bottom: 24px; max-width: 320px; }
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  color: rgba(255,255,255,0.7); transition: var(--transition);
}
.social-icons a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h5 { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px; font-family: 'Lato', sans-serif; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); }
.payment-icons { display: flex; gap: 10px; font-size: 24px; }

/* Responsive */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .section { padding: 60px 0; }
  .section-header h2, .page-banner h1 { font-size: 34px; }
}
