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


    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('images/floral-2.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      opacity: 0.65;
      z-index: -1;
    }


    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 50px;
      position: relative;
    }

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

    .logo-section img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
      align-items: center;
    }

    nav ul li a {
      text-decoration: none;
      color: #3b2f2a;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #6b4c3b;
    }

    .icons {
      display: flex;
      gap: 20px;
      align-items: center;
      position: relative;
    }

    .icons svg {
      width: 28px;
      height: 28px;
      cursor: pointer;
      stroke: #3b2f2a;
      transition: stroke 0.3s ease;
    }

    .icons svg:hover {
      stroke: #6b4c3b;
    }

    /* CART DROPDOWN */
    .search-dropdown {
      display: none;
      position: absolute;
      top: 40px;
      right: 0px;
      background: #f9f3ea;
      border: 1px solid #d6c2aa;
      border-radius: 10px;
      width: 260px;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }

    .search-dropdown h4 {
      font-size: 1rem;
      margin-bottom: 10px;
      cursor: pointer;
    }

    .search-dropdown ul {
      list-style: none;
      margin-left: 10px;
      margin-bottom: 15px;
    }

    .search-dropdown li {
      margin: 3px 0;
      font-size: 0.95rem;
      cursor: pointer;
    }

    .search-dropdown li:hover {
      color: #6b4c3b;
    }

    .hero {
      text-align: center;
      margin-top: 70px;
      margin-bottom: 70px;
    }

    .hero h1 {
      font-size: 2.8rem;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .hero p {
      font-style: italic;
      margin-bottom: 25px;
    }

    .hero button {
      border: 1px solid #3b2f2a;
      background: transparent;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      font-family: 'Georgia', serif;
      transition: all 0.3s ease;
    }

    .hero button:hover {
      background-color: #3b2f2a;
      color: #f4e8d3;
    }

    .cards {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin: 30px 0;
      flex-wrap: wrap;
    }

    /* Card style (desktop) */
    .card {
      background: #f7efe3;
      border-radius: 15px;
      width: 220px;
      text-align: center;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card p {
      padding: 15px;
      font-weight: bold;
      font-size: 16px;
    }

    /* 🌸 Responsive for mobile (≤425px) */
    @media (max-width: 426px) {
      .cards {
        gap: 10px;
        margin: 30px 0;
      }

      .card {
        width: 100px;
        /* smaller width */
        border-radius: 10px;
      }

      .card img {
        height: 90px;
        /* smaller image */
      }

      .card p {
        font-size: 12px;
        /* smaller text */
        padding: 8px;
      }

      .hero h1 {
        font-size: 2rem;

      }

      .icons svg {
        width: 22px;
        height: 22px;
      }

      .search-dropdown li {
        font-size: 0.80rem;
      }
    }



    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #3b2f2a;
    }

    @media (max-width: 700px) {
      nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #f9f3ea;
        text-align: center;
        padding: 15px 0;
      }

      nav ul {
        flex-direction: column;
        gap: 15px;
      }

      nav.show {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgba(247, 239, 227, 0.85);
        /* soft beige tone */
        position: absolute;
        top: 85px;
        /* adjust based on your header height */
        right: 15px;
        left: 15px;
        padding: 25px 0;
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        backdrop-filter: blur(6px);
      }

      nav.show ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
      }

      nav.show li {
        margin: 10px 0;
      }

      nav.show a {
        text-decoration: none;
        color: #3b2f2a;
        font-family: 'Georgia', serif;
        font-size: 1.1rem;
        transition: color 0.3s ease;
      }

      nav.show a:hover {
        color: #a87a50;
      }

      .hamburger {
        display: flex;
      }
    }

    .footer {
      background-color: rgba(247, 239, 227, 0.85);
      backdrop-filter: blur(4px);
      padding: 40px 20px;
      text-align: center;
      color: #3b2f2a;
      border-top: 2px solid #d6bfa3;
      font-family: 'Georgia', serif;
    }

    .footer-content h2 {
      font-size: 1.8rem;
      margin-bottom: 10px;
      color: #3b2f2a;
    }

    .footer-content p {
      margin: 5px 0;
      font-size: 0.95rem;
    }

    .social {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-top: 10px;
    }

    .social a {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: #fff;
      display: grid;
      place-items: center;
      text-decoration: none;
      color: #2b2b2b;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    }

    .copyright {
      margin-top: 10px;
      font-size: 0.8rem;
      color: #5a453a;
    }

    @media (max-width: 425px) {
      .footer-content h2 {
        font-size: 1.5rem;
      }



      .footer-content p {
        font-size: 0.85rem;
      }
    }