* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
}

.hero-text {
    max-width: 45%;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #E97AB0;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}

.btn-secondary {
    background-color: transparent;
    color: #E97AB0;
    border: 2px solid #E97AB0;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}


.hero-image img {
    width: 600px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
          margin-bottom: 20px;
}
.collection {
    max-width: 45%;
    margin: 0 auto;
    text-align: center;

}

.collection h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-top: 50px;
}

.subtext p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
   
}
.line {
    width: 90%;         
    height: 2px;        
    background-color: #E97AB0;
    margin: 10px auto; 
     margin-top: 40px;

}
.page-header {
    text-align: center;
    padding: 40px 0 20px 0;
background-color: oklch(86.553% 0.00685 339.642);;
    margin-top: 20px;
}
.container {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    margin-top: 20px;
}
.container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}
.container p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: center;
}
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    color: aliceblue;
}
.products-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 60px;
}

.product-card {
    background: #fff;
    width: 300px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: none;
    border-radius: 50%;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 18px;
}


.product-info {
    padding: 20px;
}

.product-category {
    font-size: 13px;
    color: #E97AB0;
    margin-bottom: 5px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 600;
    font-size: 16px;
}

.add-to-cart {
    background: #E97AB0;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
}


.footer {
  background: #1f1f1f;
  color: #ddd;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
}

.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;
}
