/* ============= GLOBAL ============= */

:root {
  --hellena-bg: #f5ecdf;
  --hellena-cream: #f4e8d7;
  --hellena-tan: #c98a48;
  --hellena-dark: #1d1713;
  --hellena-muted: #a28c77;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--hellena-bg);
  color: var(--hellena-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}
/* Simple parallax helper */
[data-parallax-speed] {
  will-change: transform;
}

/* ============= LAYOUT WRAPPER ============= */

.hellena-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}

/* ============= HEADER / NAV ============= */

.hellena-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0 0.4rem;
}

.hellena-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hellena-nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.96rem;
}

.hellena-nav a {
  position: relative;
}

.hellena-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.2s ease;
}

.hellena-nav a:hover::after {
  width: 100%;
}

/* ============= HERO ============= */

.hero {
  margin-top: 1.6rem;
  background-color: var(--hellena-tan);
  border-radius: 32px;
  padding: 3.2rem 3.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  color: #fff;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1.08;
  margin: 0 0 1.1rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  margin: 0 0 1.7rem;
  opacity: 0.98;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  background-color: #f06a22;
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.hero-cta:hover {
  background-color: #e15f16;
}

.hero-meta {
  margin-top: 1.3rem;
  font-size: 0.9rem;
  opacity: 0.95;
}

.hero-right {
  border-radius: 26px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

/* ============= HOME: CATEGORIES ============= */

.home-categories {
  margin: 3rem auto 2.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.category-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #f6eee4;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.category-label {
  font-size: 0.98rem;
}

/* ============= HOME: PRODUCTS ============= */

.home-section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  text-align: center;
  margin: 0 0 2rem;
}

.home-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.7rem;
  margin-bottom: 3rem;
}

.product-card {
  background-color: #f8eee1;
  border-radius: 22px;
  padding: 1.4rem 1.1rem 1.6rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product-image {
  width: 100%;
  max-width: 130px;
  height: 130px;
  margin: 0 auto 1.1rem;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: #e3cfb8;
}

.product-name {
  font-size: 0.97rem;
  margin-bottom: 0.35rem;
}

.product-price {
  font-size: 0.98rem;
  font-weight: 600;
}

/* ============= TESTIMONIAL ============= */

.testimonial {
  padding: 2.3rem 2.1rem;
  background-color: #f8eee1;
  border-radius: 26px;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 3.1rem;
  font-family: Georgia, "Times New Roman", serif;
}

/* ============= NEWSLETTER ============= */

.hellena-newsletter {
  background-color: var(--hellena-cream);
  padding: 3.1rem 1.7rem 3rem;
  border-radius: 26px;
  text-align: center;
}

.hellena-newsletter__inner {
  max-width: 580px;
  margin: 0 auto;
}

.hellena-newsletter__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 0.4rem;
}

.hellena-newsletter__subtitle {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.hellena-newsletter__text {
  font-size: 0.95rem;
  margin: 0 0 1.7rem;
  line-height: 1.55;
}

.hellena-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.hellena-newsletter__input {
  flex: 1 1 260px;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #d4c3aa;
  font-size: 0.95rem;
}

.hellena-newsletter__button {
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  background-color: #151515;
  color: #fff;
}

.hellena-newsletter__brand {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ============= FOOTER ============= */

.hellena-footer {
  padding-top: 3rem;
  font-size: 0.9rem;
  color: var(--hellena-muted);
  text-align: center;
}

/* ======= PRODUCT / CART / ABOUT (unchanged for now) ======= */

.product-page-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.product-hero-image {
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  min-height: 340px;
  background-color: #e3cfb8;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.product-price-main {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-benefits {
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}

.product-benefits li { margin-bottom: 0.35rem; }

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}

.product-badge {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background-color: #fdf8f1;
}

.product-add-to-cart {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.btn-primary {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  background-color: var(--hellena-dark);
  color: #ffffff;
}

.quantity-input {
  width: 68px;
  padding: 0.45rem 0.4rem;
  border-radius: 999px;
  border: 1px solid #d4c3aa;
  font-size: 0.95rem;
}

/* lower product sections */

.product-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
}

.product-section-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.product-text-block {
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.faq-item { margin-bottom: 0.9rem; font-size: 0.95rem; }
.faq-question { font-weight: 600; margin-bottom: 0.2rem; }
.review-quote { font-style: italic; margin-bottom: 0.4rem; font-size: 0.95rem; }

.cart-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 2.5rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cart-table th,
.cart-table td {
  padding: 0.9rem 0.4rem;
  border-bottom: 1px solid #e4d5c5;
}

.cart-product-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cart-thumb {
  width: 50px;
  height: 50px;
  border-radius: 0.6rem;
  background-color: #e3cfb8;
  background-size: cover;
  background-position: center;
}

.cart-qty-input {
  width: 64px;
  padding: 0.45rem;
  border-radius: 999px;
  border: 1px solid #d4c3aa;
}

.cart-coupon {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.75rem;
}

.cart-summary {
  background-color: #fdf8f1;
  padding: 1.6rem 1.4rem;
  border-radius: 1.25rem;
  font-size: 0.95rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.cart-summary-total {
  font-weight: 600;
  margin-top: 0.4rem;
}

.cart-continue { margin-top: 2rem; }

.btn-secondary-wide {
  width: 100%;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background-color: var(--hellena-dark);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
}

.about-hero {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.about-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.about-image {
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  background-color: #e3cfb8;
}

.about-text p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  font-size: 0.9rem;
}

.about-badge-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* ============= RESPONSIVE ============= */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    min-height: 220px;
  }
  .home-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hellena-page {
    padding-inline: 1rem;
  }
  .hellena-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero {
    padding: 2.4rem 1.8rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .home-products {
    grid-template-columns: minmax(0, 1fr);
  }
  .home-categories {
    grid-template-columns: minmax(0, 1fr);
  }
}