/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Header */
.main-header {
  background: #fceefc;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 600;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 80px;
}

.hero-text {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 15px;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-text img {
  height: 60px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #111;
}

.shop-btn {
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #d4a4e4;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 50px 0 30px;
}

/* Category Grid */
.category-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 10%;
  flex-wrap: wrap;
}

.category {
  text-align: center;
  max-width: 200px;
}

.category img {
  width: 100%;
  border-radius: 10px;
}

.category h3 {
  margin-top: 10px;
  font-weight: 500;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 10% 50px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.1rem;
  margin: 10px 0 5px;
  color: #222;
}

.product-info p {
  font-size: 0.95rem;
  color: #777;
}

.price {
  font-weight: bold;
  color: #d4a4e4;
  margin-top: 5px;
}

/* Cart + Login Section */
.cart-section,
.login-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.cart-section ul {
  list-style: none;
  padding: 0;
}

.cart-section li {
  padding: 5px 0;
}

input[type="email"],
input[type="password"] {
  padding: 10px;
  margin: 10px 5px;
  width: 200px;
}

button {
  margin: 5px;
  padding: 10px 20px;
  background: #d4a4e4;
  color: white;
  border: none;
  border-radius: 5px;
}

/* Footer */
.footer-nav {
  background: #fceefc;
  padding: 30px 10%;
  text-align: center;
}

.footer-nav nav a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}

.footer-nav p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}/* Paste the CSS code provided earlier from the user (the one styled for floral layout) */