body {
    background-color: #F4EDF1;
    font-family: 'Poppins', sans-serif;
    color: #2b2b2b;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #E97AB0;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 14px;
}


.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.cart {
    font-size: 20px;
    cursor: pointer;
    
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 4px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 25px;
    width: 160px;
    font-size: 14px;
}

.search-box button {
    border: none;
    background-color: #E97AB0;
    color: white;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
}


.page-header {
  text-align: center;
  padding: 60px 0 40px;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header p {
  color: #777;
}


.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-filter {
  border: none;
  padding: 20px 42px;
  border-radius: 30px;
  background: #ffff;
  color: #333;
  cursor: pointer;
  font-weight: 500;
}

.btn-filter.active,
.btn-filter:hover {
  background: #e85fa3;
  color: white;
}




.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}



.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}



.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}


.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.product-info {
  padding: 20px;
}

.product-category {
  color: #e85fa3;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.4;
}


.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #e85fa3;
}

.add-to-cart {
  border: none;
  background: #e85fa3;
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.add-to-cart:hover {
  background: #d94b92;
}



.footer {
  background: #1f1f1f;
  color: #ddd;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
  margin-top: 60px;
}

.footer .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a,
.footer-links a {
  color: #ddd;
  text-decoration: none;
  display: flex;
  margin-bottom: 8px;
}

.footer-section ul li a:hover,
.footer-links a:hover {
  color: #ffb703;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

.created-by {
  margin-top: 5px;
  color: #aaa;
}

.editorial-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  margin-top: 90px;

}

.editorial-intro h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.editorial-intro p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}
