/* ----- RESET & BASE (EXPENSIVE FEEL) ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafaf8;  /* soft natural paper tone */
  color: #1e1e1c;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Soft, layered shadows — no harsh borders */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ----- TYPOGRAPHY: PLAYFAIR FOR HEADINGS (EXPENSIVE) ----- */
h1, h2, h3, .serif-accent {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

/* Body text with generous line-height */
p, .body-text {
  line-height: 1.8;
  color: #3a3a38;
}

/* ----- REMOVE ALL HARSH BORDERS, USE SOFT SHADOWS ----- */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ----- HEADER (MINIMAL & ELEVATED) ----- */
.site-header {
  padding: 2rem 0;
  border-bottom: none;
  background: transparent;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1e1e1c;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 3rem;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  text-decoration: none;
  color: #2c2c2a;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* ----- FULL-WIDTH HERO (MAGAZINE COVER) ----- */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 90vh;
  max-height: 900px;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.85); /* subtle darkening */
}

/* Overlay to make text look like high-fashion magazine */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0,0,0,0.2) 0%, rgba(20,20,20,0.1) 60%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: 8%;
  padding: 2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-content .eyebrow {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

.hero-content h1 {
  color: white;
  text-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ----- PILL-SHAPED CTA (THE MONEY BUTTON) with gradient + hover lift ----- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f5e7d9 0%, #e8d5c0 100%);
  color: #1e1e1c;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.9rem 2.4rem;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 4px 8px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

.btn-pill i {
  transition: transform 0.2s;
}

.btn-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08), 0 8px 12px rgba(0,0,0,0.03);
  background: linear-gradient(135deg, #efe1d2 0%, #e0ccb7 100%);
}

.btn-pill:hover i {
  transform: translateX(5px);
}

/* secondary outline version for subtlety */
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  color: white;
  box-shadow: none;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.9);
}

/* ----- PRODUCT SECTION (EDITORIAL GRID) ----- */
.section-title {
  margin: 5rem 0 2.5rem;
  text-align: left;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.2rem;
  color: #5e5e5a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* PRODUCT CARD — Minimalist gallery piece, soft shadows */
.product-card {
  background: #ffffff;
  border-radius: 2px; /* very subtle, almost sharp but elegant */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.02);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(0);
  border: none;
}

.product-card:hover {
  box-shadow: 0 25px 45px -8px rgba(0,0,0,0.12), 0 8px 16px -6px rgba(0,0,0,0.05);
  transform: translateY(-6px);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ece8e2;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.product-card:hover .card-media img {
  transform: scale(1.02);
}

/* GLASSMORPHISM BADGE — "Editor's Choice" etc. */
.badge-glass {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1e1e1c;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  border: 0.5px solid rgba(255,255,255,0.4);
  z-index: 2;
}

.badge-glass.dark-text {
  color: #1e1e1c;
}

.card-content {
  padding: 1.8rem 1.8rem 2rem;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0.75rem 0 1.2rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #2c2c2a;
}

.rating {
  color: #7f7e7a;
  font-size: 0.9rem;
}

.card-content p {
  color: #4a4a46;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.card-footer {
  margin-top: auto;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: 1.5px solid #d9d2c5;
  color: #1e1e1c;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border-radius: 40px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

.btn-card i {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.btn-card:hover {
  background: #1e1e1c;
  border-color: #1e1e1c;
  color: white;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.btn-card:hover i {
  transform: translateX(4px);
  color: white;
}

/* ----- EDITORIAL FOOTER (magazine clean) ----- */
.footer {
  margin-top: 7rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
  color: #5f5f5b;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .hero-content {
    margin-left: 5%;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .nav-bar {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* Feather icons inline alignment */
i {
  display: inline-flex;
  align-items: center;
}

/* additional luxury touches */
.divider-light {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.05), transparent);
  margin: 3rem 0;
}

/* Table styling for Chopper vs Processor */
.table-wrapper {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  background: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th, td {
  padding: 24px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: "Inter", sans-serif;
  color: #3a3a38;
}

th {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #1e1e1c;
  background: #fafaf8;
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}