/*
Theme Name: Hello Elementor Child - Skin Beauty
Theme URI: https://example.com/
Description: Child theme for Hello Elementor tailored to the Skin Beauty landing page design.
Author: Vision Nine Studio
Author URI: https://example.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

:root {
  --ink: #3a2d32;
  --ink-strong: #221e42;
  --sub: #565656;
  --accent: #ff7a00;
  --cream: #fef3e2;
  --cream-soft: #fdf2e1;
  --cream-card: #ffefd7;
  --white: #ffffff;
}

/* Base */
body {
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: #fffbfa;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  letter-spacing: 0;
}

p {
  color: var(--sub);
  line-height: 1.75;
}

/* Elementor container defaults */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

/* Header */
.v9-header {
  padding-top: 24px;
  padding-bottom: 24px;
}

.v9-nav a {
  font-size: 16px;
  line-height: 1.93;
  color: var(--ink);
}

.v9-btn-outline {
  border: 2px solid var(--ink);
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--ink);
}

/* Hero */
.v9-hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 1024px;
}

.v9-hero-title {
  font-size: 85px;
  line-height: 1.15;
}

.v9-hero-kicker {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

.v9-hero-copy {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.v9-btn-primary {
  background: var(--ink-strong);
  color: var(--white);
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.v9-btn-ghost {
  border: 2px solid var(--ink-strong);
  color: var(--ink);
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

/* Section titles */
.v9-section-title {
  font-size: 52px;
  line-height: 1.3;
}

/* Product cards */
.v9-product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v9-product-card h3 {
  font-size: 28px;
}

.v9-price {
  font-size: 16px;
}

.v9-price-new {
  font-weight: 700;
  color: var(--accent);
}

.v9-discount {
  background: rgba(255, 0, 0, 0.1);
  color: red;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 16px;
}

/* Quote */
.v9-quote {
  background: var(--cream-soft);
  padding: 71px 119px;
}

/* Testimonial */
.v9-testimonial-card {
  background: var(--cream-card);
  padding: 56px 48px;
}

/* Footer */
.v9-footer {
  background: var(--ink-strong);
  color: #fff;
}

.v9-footer p,
.v9-footer a {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
  .v9-hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .v9-hero-title {
    font-size: 56px;
  }

  .v9-section-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 336px;
  }

  .v9-hero-title {
    font-size: 46px;
    line-height: 1.2;
  }

  .v9-section-title {
    font-size: 32px;
    line-height: 1.4;
  }

  .v9-btn-primary,
  .v9-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
