/* Éclat Atelier — premium design overrides */

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, .hero-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.product-card {
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

.product-card img {
  border-radius: 8px;
}

.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eaeaea;
  margin-top: 60px;
  display: block;
  background: #fff;
  color: #333;
}

.footer-inner {
  width: min(900px, 90%);
  margin: 0 auto;
}

.footer-brand {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin: 0 0 10px;
}

.footer-location {
  font-size: 14px;
  color: #777;
  margin: 0 0 20px;
}

.footer-links {
  display: block;
}

.footer-links a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.premium-header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}

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

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
}

.nav-links a {
  margin-left: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #000;
}

section {
  padding: 60px 0;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

p {
  line-height: 1.6;
}

#shop {
  margin-top: 40px;
}

.product-card {
  margin-bottom: 30px;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 700px) {
  .scent-categories {
    margin: 45px 0;
    padding: 0 6vw;
  }
}

.brand-story {
  padding: 80px 0;
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.brand-story-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.brand-story-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.brand-story-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.announcement-bar {
  background: #f4f4f4;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.announcement-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #444;
}

.premium-header {
  margin-top: 10px;
}

.hero-section {
  padding-top: 40px;
}

.hero-section h1,
.hero-section p {
  margin-bottom: 20px;
}

.brand-story {
  margin-top: 60px;
}

.brand-story-inner {
  padding: 40px 20px;
}

.brand-story {
  background: #f7f7f7;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.brand-story-title {
  font-size: 34px;
  margin-bottom: 16px;
}

.brand-story-text {
  font-size: 18px;
  color: #444;
  line-height: 1.75;
}

section {
  scroll-margin-top: 80px;
}

.brand-story-text {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
}

.product-filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 40px 0;
}

.product-filter-bar button {
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-filter-bar button:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0;
}

.product-filter-bar button {
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-filter-bar button:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

/* External perfume packshots */
.product-card img {
  object-fit: contain;
  width: 100%;
  height: 260px;
}

/* Brand autocomplete */
.search-inner {
  position: relative;
}

.brand-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  max-height: 280px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-radius: 0 0 6px 6px;
}

.brand-suggestions[hidden] {
  display: none;
}

.brand-suggestions div {
  padding: 8px 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #333;
  text-transform: capitalize;
}

.brand-suggestions div:hover {
  background: #f5f5f5;
}
