/* Reset & base */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9e4d4;     /* your warm beige */
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #f7cdd0;     /* signature soft pink */
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* subtle depth */
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1.8rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  transition: color 0.3s;
}

nav a:hover {
  color: #d46a7a; /* deeper pink hover for personality */
}

/* Hero - restored big text + warmth */
.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 6%;
  background-color: #fdf4ea;
  gap: 3rem;
  min-height: 60vh;
}

.hero-text {
  flex: 1;
  max-width: 55%;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);   /* big & bold, but scales */
  font-weight: bold;
  margin: 0 0 1.8rem;
  line-height: 1.1;
  color: #333;
}

.explore-btn {
  background-color: #f7cdd0;
  border: none;
  padding: 1rem 2rem;
  margin: 0.8rem 1rem 0.8rem 0;
  cursor: pointer;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, background 0.3s;
}

.explore-btn:hover {
  background-color: #f0b8c0;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Featured collections */
.featured-collections {
  padding: 4rem 6%;
  text-align: center;
  background: linear-gradient(to bottom, #fdf4ea 0%, #f9e4d4 100%);
}

.featured-collections h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 2.5rem;
  color: #333;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.collection-item {
  max-width: 280px;
}

.collection-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.collection-item p {
  margin: 1rem 0 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #444;
}

/* Tags - cozy icons */
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem 6%;
  background-color: #f9e4d4;
}

.tags span {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.tags span img {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
}

/* Best sellers - restored big meaningful text */
.best-sellers {
  padding: 4rem 6%;
  text-align: center;
  background-color: #fdf4ea;
}

.best-sellers h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 2.5rem;
}

.best-seller-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 4rem;
}

.best-seller-content img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.best-seller-text {
  text-align: left;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.45;
  color: #444;
}

.best-seller-text p {
  margin: 0.4rem 0;
}

/* Footer */
footer {
  padding: 2rem 6%;
  background-color: #f7cdd0;
  text-align: center;
}

footer p {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

footer a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

footer img {
  width: 32px;
  vertical-align: middle;
  margin-right: 0.6rem;
}

/* Mobile adjustments – keep the soul */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 7%;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .explore-btn {
    display: block;
    margin: 1rem auto;
    width: 85%;
    max-width: 360px;
  }

  .best-seller-content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .best-seller-text {
    text-align: center;
  }

  .best-seller-content img {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  header {
    padding: 1.2rem 5%;
  }

  nav {
    gap: 1rem 1.4rem;
  }

  .featured-collections,
  .best-sellers,
  .tags {
    padding: 3rem 7%;
  }

  .tags {
    flex-direction: column;
    gap: 1.5rem;
  }

  .collection-grid {
    gap: 1.8rem;
  }
}