/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #1a1a2e;
  color: #fff;
  padding: 20px 0;
  border-bottom: 4px solid #e94560;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
}

nav a {
  color: #eee;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #e94560;
}

/* Main Content */
main {
  flex: 1;
  background: #fff;
  padding: 40px 20px;
  margin: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

main h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a1a2e;
  border-bottom: 3px solid #e94560;
  padding-bottom: 10px;
}

main h2 {
  font-size: 1.6rem;
  margin: 30px 0 15px 0;
  color: #1a1a2e;
}

main p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

main ul {
  margin: 15px 0 20px 25px;
}

main ul li {
  margin-bottom: 8px;
}

.button-container {
  text-align: center;
  margin: 40px 0 20px;
}

.shop-button {
  display: inline-block;
  background: #e94560;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
  cursor: default;
  opacity: 0.8;
}

.note {
  color: #888;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Footer */
footer {
  background: #1a1a2e;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
  border-top: 2px solid #e94560;
}

footer a {
  color: #ddd;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  color: #e94560;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 700px) {
  header .container {
    flex-direction: column;
    align-items: center;
  }

  nav {
    margin-top: 12px;
  }

  nav a {
    margin: 0 10px;
    font-size: 0.95rem;
  }

  main h1 {
    font-size: 1.8rem;
  }

  main h2 {
    font-size: 1.3rem;
  }
}


.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.inline-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0 30px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cta-section {
  background: #f0f0f5;
  border-radius: 16px;
  padding: 30px 20px 20px 20px;
  margin-top: 40px;
  text-align: center;
}

.cta-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}


@media (max-width: 700px) {
  .hero-image {
    max-height: 250px;
  }
  .inline-image {
    max-height: 200px;
  }
  .cta-image {
    max-height: 180px;
  }
}