 body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
    }

    header {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 1rem;
      gap: 1rem;
      position: relative;
    }

    .logo img {
      max-width: 150px;
      height: auto;
    }

    .search-bar-container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .search-bar {
      display: flex;
      width: 100%;
      max-width: 500px;
      border: 1px solid #ccc;
      border-radius: 20px;
      overflow: hidden;
    }

    .search-bar input {
      flex: 1;
      padding: 0.5rem 1rem;
      border: none;
      font-size: 1rem;
      outline: none;
    }

    .search-bar button {
      background-color: black;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
      font-size: 1rem;
    }

    .icons {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.2rem;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #333;
    }

    nav {
      display: flex;
      gap: 1rem;
      padding: 0 1rem 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    .hero {
      background: url('home_image.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 5rem 1rem;
    }

    .hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
    .hero p { font-size: 1.1rem; margin-bottom: 2rem; }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .cta-buttons a {
      background: black;
      color: white;
      padding: 0.75rem 1.5rem;
      margin: 0.5rem;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
    }

    section {
      padding: 3rem 1rem;
      text-align: center;
    }

    .collections, .new-arrivals {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .collections div, .new-arrivals div {
      background: #fafafa;
      padding: 1rem;
      border-radius: 8px;
    }

    .collections img {
      width: 100%;
      height: auto;
      margin-top: 0.5rem;
      border-radius: 6px;
    }

    .testimonial {
      max-width: 600px;
      margin: 1rem auto;
      font-style: italic;
    }

    form input[type="email"] {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: 4px;
      border: 1px solid #ccc;
      width: 80%;
      max-width: 300px;
      margin-right: 0.5rem;
    }

    form button {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: none;
      background-color: black;
      color: white;
      border-radius: 4px;
      cursor: pointer;
    }

    footer {
      background-color: #f8f8f8;
      padding: 2rem 1rem;
      text-align: center;
      font-size: 0.9rem;
    }

    .socials a {
      margin: 0 0.5rem;
      text-decoration: none;
      color: #333;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .header-top {
        flex-direction: column;
        align-items: stretch;
        position: relative;
      }

      .icons {
        position: absolute;
        top: 1rem;
        right: 1rem;
        order: -1;
      }

      .search-bar-container {
        width: 100%;
        margin-top: 0.005rem; /* pushes below icons */
      }

      nav {
        flex-direction: column;
        display: none;
      }

      nav.show {
        display: flex;
      }

      .hamburger {
        display: flex;
      }
    }

    /* DESKTOP */
    @media (min-width: 769px) {
      nav {
        display: flex !important;
      }

      .hamburger {
        display: none;
      }
    }
  select {
    color: #333333;
    -webkit-appearance: none; /* Removes default iOS styling */
    -moz-appearance: none;    /* Removes default Firefox styling */
    appearance: none;         /* Standard property */
    background-color: #fff;   /* Or your desired background */
    border: 1px solid #ccc;   /* Your desired border */
    padding: 8px 10px;        /* Adjust padding */
    border-radius: 4px;       /* Match your button/input styles */
    cursor: pointer;
    font-size: 16px;          /* Ensure readable font size */
    line-height: 1.5;
    /* Add an arrow icon if you remove default appearance */
    background-image: url('data:image/svg+xml;utf8,<svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px; /* Make space for the custom arrow */
}

/* For IE 10+ */
select::-ms-expand {
    display: none;
}

/* When focused */
select:focus {
    outline: none;
    border-color: #007bff; /* Or your brand color */
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}