/* ==========================
   Global reset & base
   ========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f7f7;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

/* ==========================
   Top info bar
   ========================== */
.top-bar {
  background: #ffffff;
  color: #6b6b6b;
  border-bottom: 1px solid #e2e2e2;
  font-size: 0.8rem;
}

.top-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

/* ==========================
   Header & navigation
   ========================== */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e2e2e2;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-area img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text h1 {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-text p {
  font-size: 0.8rem;
  color: #6b6b6b;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 3px;
}

.nav a:hover {
  color: #4a4a4a;
}

.nav a.active {
  font-weight: 600;
  color: #4a4a4a;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #4a4a4a;
  border-radius: 999px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================
   Buttons
   ========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #4a4a4a;
  background: #4a4a4a;
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background: #5c5c5c;
  border-color: #5c5c5c;
}

/* ==========================
   Sections / headings
   ========================== */
.section-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b6b6b;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-subtitle {
  margin-top: 8px;
  color: #6b6b6b;
  max-width: 600px;
}

/* ==========================
   Generic card
   ========================== */
.card-soft {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid #e2e2e2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* ==========================
   Product grid (Body Shapers, Beauty Products)
   ========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.product-image-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f3f3f3;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.04);
}

.product-body {
  padding: 14px 16px 18px;
}

.product-name {
  font-size: 1rem;
  margin-bottom: 4px;
}

.product-desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-bottom: 10px;
}

.product-price {
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 12px;
}

/* ==========================
   2-column layouts (About, Salon)
   ========================== */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
}

.rich-text p + p {
  margin-top: 14px;
}

.pill-list {
  list-style: none;
  margin-top: 14px;
}

.pill-list li {
  font-size: 0.9rem;
  color: #6b6b6b;
}

.pill-list li::before {
  content: "• ";
  color: #4a4a4a;
}

/* ==========================
   Footer
   ========================== */
.footer {
  border-top: 1px solid #e2e2e2;
  background: #ffffff;
  padding: 26px 0 20px;
  font-size: 0.85rem;
  color: #6b6b6b;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.footer h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.footer ul {
  list-style: none;
}

.footer li + li {
  margin-top: 4px;
}

.footer a {
  color: #4a4a4a;
  text-decoration: none;
}

.footer a:hover {
  color: #5c5c5c;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

/* ==========================
   Responsive
   ========================== */
   /* ==========================
   VIDEO PRODUCT SUPPORT
   ========================== */

/* Larger wrapper for video items */
.product-video-wrapper {
    width: 100%;
    height: 420px;       /* Larger box to fit the full video */
    overflow: hidden;
    background: #000;
    border-radius: 0;    /* Matches product cards */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video styling */
.product-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* Full video visible without cropping */
}
@media (max-width: 840px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #ffffff;
    border-top: 1px solid #e2e2e2;
    flex-direction: column;
    padding: 10px 20px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* FIX: Do NOT apply product image styling to the main header logo */
.site-logo {
    width: 120px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
}

/* Prevent old .logo-area img rules from changing the logo */
.logo-area img {
    border-radius: 0 !important;
    object-fit: contain !important;
}
