    :root {
      --primary: #553102;
      --text: #311c00;
      --muted: #6b7280;
      --bg: #f9fafb;
      --card-bg: #ffffff;
      --border: #e5e7eb;
    }
.container-navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
    
}

header {
    background-color: #493628;
    padding: 1px 0;
    width: 100%;
     /* Added to position the hamburger menu correctly */
}
/* Default navigation */
header .container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    height: 50px;
    width: 50px;
    font-weight: bold;
    cursor: pointer;
}
.logo img:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.desktop-nav ul li {
    margin-left: 20px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #ffffff;
}
.desktop-nav ul li a:hover {
    color: #d3895f;
}

/*Hamburger menu*/
.hamburger-menu {
    display: none; 
    font-size: 1.5em;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.hamburger-menu.open {
    transform: rotate(45deg); 
}

/* Mobile navigation menu*/
.mobile-nav {
    display: none; /* Hidden by default */
    position: absolute;
    top: 55px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background-color: #000000;
    text-align: center;
    padding: 15px 0;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    padding: 10px 0;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #fff;
}

    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: var(--bg);
      color: var(--text);
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

    .coffee-logo {
      display: block;
      margin: 0 auto 20px;
      width: 60px;
      height: auto;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }

    .tab {
      padding: 10px 20px;
      background: var(--primary);
      color: #fff;
      border-radius: 9999px;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .review-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #d1d5db;
    }

    .review-name {
      font-weight: 600;
      font-size: 1rem;
    }

    .stars {
      color: #fbbf24;
      font-size: 1rem;
      margin: 5px 0;
    }

    .review-text {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .review-footer {
      font-size: 0.85rem;
      color: var(--muted);
      text-align: right;
    }

    .load-more {
      margin-top: 30px;
      display: flex;
      justify-content: center;
    }

    .load-more button {
      padding: 10px 20px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
    }

    @media (max-width: 600px) {
    .desktop-nav {
        display: none;
    }
    .logo{
        padding-left: 10px;
    }
    .logo img{
        height: 40px;
        width: 40px;
    }

    .hamburger-menu {
        font-size: 1em;
        display: block; /* Make it visible on mobile */
        color: white;
        font-weight: bold;
        padding: 5px 10px;
        background-color: #493628;
        border: 3px solid #674e3c;
        border-radius: 5px;
        position: absolute; /* Position it relative to the header */
        top: 10px; /* Adjust vertical position as needed */
        right: 20px; /* Adjust horizontal position as needed */
        z-index: 1000; /* Ensure it appears above other elements */
    }
      .section-title {
        font-size: 1.5rem;
      }
    }