* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(to right, #fef6ff, #f9ecff);
      color: #333;
    }

    /* Navbar */
    header {
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 1rem 5%;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img{
      height: 60px;
      width: auto;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #b14bcf;
    }

    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 5% 10%;
    }

    .hero-text {
      flex: 1 1 400px;
    }

    .hero-text h1 {
      font-size: 3rem;
      color: #9e3dc2;
    }

    .hero-text p {
      margin: 1rem 0;
      color: #555;
    }

    .hero-text button {
      background: #b14bcf;
      color: white;
      border: none;
      padding: 0.8rem 2rem;
      border-radius: 25px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .hero-text button:hover {
      background: #9e3dc2;
      transform: scale(1.05);
    }

    .hero-img {
      flex: 1 1 400px;
      text-align: center;
    }

    .hero-img img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      height: 500px;
      width: auto;
    }

    /* Features */
    .features {
      text-align: center;
      padding: 5% 10%;
    }

    .features h2 {
      color: #9e3dc2;
      margin-bottom: 2rem;
      font-size: 2rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .card {
      background: #fff;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .card h3 {
      color: #b14bcf;
      margin-bottom: 0.8rem;
    }

    /* About Section */
    .about {
      background: #fff;
      padding: 5% 10%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .about-text {
      flex: 1 1 400px;
      padding: 1rem;
    }

    .about-text h2 {
      color: #9e3dc2;
      margin-bottom: 1rem;
    }

    .about-img {
      flex: 1 1 400px;
      text-align: center;
    }

    .about-img img {
      width: 90%;
      border-radius: 20px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      height: 500px;
      width: auto;
    }

    /* New Arrivals */
    .arrivals {
      text-align: center;
      padding: 5% 10%;
    }

    .arrivals h2 {
      color: #9e3dc2;
      margin-bottom: 2rem;
    }

    .arrivals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .arrivals-item {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .arrivals-item:hover {
      transform: translateY(-10px);
    }

    .arrivals-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .arrivals-item h4 {
      padding: 1rem;
      color: #b14bcf;
    }

    /* CTA */
    .cta {
      background: linear-gradient(to right, #b14bcf, #d084e3);
      text-align: center;
      color: white;
      padding: 4rem 2rem;
      border-radius: 20px;
      margin: 5% 10%;
    }

    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .cta button {
      background: white;
      color: #b14bcf;
      margin-top: 20px;
      padding: 1rem 2rem;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .cta button:hover {
      background: #f5d9ff;
      transform: scale(1.05);
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 2rem;
      background: #fff;
      color: #777;
      font-size: 0.9rem;
    }

    @media(max-width:768px){
      .hero, .about {
        flex-direction: column-reverse;
        text-align: center;
      }
    }