    /* =========================
     NAVBAR
  ========================= */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #e8e4dc;
    transition: all 0.35s ease;
    z-index: 1000;
  }
  
  .nav.shrink {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 40px;
    padding: 12px 30px;
    top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    background: rgba(255, 255, 255, 0.03); /* Light transparent background */
    backdrop-filter: blur(5px); /* Apply blur to the background */
    -webkit-backdrop-filter: blur(10px); /* Safari support for backdrop-filter */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border to enhance the frosted glass effect */
}
  
  /* =========================
     NAVBAR LEFTs
  ========================= */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .logo {
    font-size: 28px;
    text-decoration: none;
    color: #244c44;
    font-weight: 600;
  }
  
  /* =========================
     NAVBAR RIGHT
  ========================= */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .nav-link {
    text-decoration: none;
    color: #244c44;
    font-weight: 600;
  }
  
  /* =========================
     MENU BUTTONS
  ========================= */
  .menu-btn {
    font-size: 22px;
    border: none;
    background: none;
    cursor: pointer;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .desktop-menu-btn {
    display: block;
  }
  
  /* =========================
     PROFILE
  ========================= */
  .profile-wrapper {
    position: relative;
  }
  
  .profile-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd17a, #e8a84f);
    color: white;
    cursor: pointer;
    font-size: 16px;
  }
  
  .profile-panel {
    position: absolute;
    top: 60px;
    right: 0;
    width: 260px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 18px;
    display: none;
    flex-direction: column;
    z-index: 2000;
  }
  
  .profile-panel.active {
    display: flex;
  }
  
  /* =========================
     PROFILE INNER
  ========================= */
  .profile-header {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd17a;
    font-weight: 600;
  }
  
  .profile-info {
    font-size: 14px;
  }
  
  .profile-info div:first-child {
    font-weight: 600;
  }
  
  .profile-info div:last-child {
    font-size: 12px;
    color: #777;
  }
  
  .section-title {
    font-size: 11px;
    color: #777;
    margin-top: 10px;
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  
  .profile-section a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #244c44;
  }
  
  .profile-section a:hover {
    background: #f5f5f5;
    border-radius: 6px;
    padding-left: 6px;
  }
  
  .profile-footer {
    text-align: center;
    margin-top: 10px;
  }
  
  .profile-footer button {
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
  }
  
  .version {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
  }
  
  /* =========================
     CART
  ========================= */
  .cart-wrapper {
    position: relative;
  }
  
  .cart-btn {
    position: relative;
    font-size: 22px;
    text-decoration: none;
    color: #244c44;
  }
  
  #cartCount {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  /* =========================
     MINI CART
  ========================= */
  .mini-cart {
    position: absolute;
    top: 50px;
    right: 0;
    width: 260px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 15px;
    display: none;
    flex-direction: column;
    z-index: 2000;
  }
  
  .mini-cart.active {
    display: flex;
  }
  
  .mini-cart h3 {
    margin-bottom: 10px;
  }
  
  .mini-cart-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .mini-cart-footer {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
  }
  
  .mini-cart-footer button {
    width: 100%;
    padding: 8px;
    border: none;
    background: black;
    color: white;
    border-radius: 8px;
    cursor: pointer;
  }
  
  /* =========================
     SIDE MENU
  ========================= */
  .side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s ease;
    z-index: 2000;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
  }
  
  .side-menu.active {
    left: 0;
  }
  
  .side-menu a {
    margin: 15px 0;
    text-decoration: none;
    font-size: 18px;
    color: #244c44;
  }
  
  .side-menu a:hover {
    color: black;
  }
  
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .menu-header button {
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
  }
  
  /* =========================
     OVERLAY
  ========================= */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1500;
  }
  
  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* =========================
     MOBILE
  ========================= */
  @media (max-width: 768px) {
    .nav {
      padding: 16px 20px;
    }
  
    .nav-link,
    .cart-btn {
      display: none;
    }
  
    .desktop-menu-btn {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
      order: 1;
    }
  
    .nav-right {
      gap: 14px;
    }
  
    .nav-right .profile-wrapper {
      order: 2;
    }
  
    .mobile-cart-link {
      display: block;
      font-weight: 600;
      border-bottom: 1px solid #ddd;
      padding-bottom: 15px;
      margin-bottom: 10px;
    }
  
    .side-menu {
      width: 280px;
      padding: 25px 20px;
    }
  
    .nav.shrink {
      width: 92%;
      padding: 10px 18px;
      top: 12px;
      border-radius: 30px;
    }
  
    .nav.shrink .profile-wrapper {
      display: none;
    }
  
    .nav.shrink .nav-right {
      gap: 0;
    }
  }