
:root {
        --primary-color: #303e27;
        --secondary-color: #b4bb72;
        --accent-color: #e7eaa8;
        --text-color: #303e27;
        --text-light: #b4bb72;
        --bg-light: #f6faf7;
        --white: #ffffff;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
      }



/* Header Styles */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
      }

      .nav {
        padding: 15px 0;
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .nav-logo a {
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .nav-logo img {
        height: 50px;
        width: auto;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
      }

      .nav-link {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: var(--transition);
        padding: 5px 0;
      }
      .nav-link:hover,
      .nav-link.active {
        color: var(--accent-color);
      }
      .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: var(--transition);
      }

      .nav-link:hover::after,
      .nav-link.active::after {
        width: 100%;
      }

      .cart-icon {
        position: relative;
        cursor: pointer;
      }

      .cart-count {
        position: absolute;
        top: -8px;
        right: -12px;
        background-color: var(--accent-color);
        color: var(--primary-color);
        font-size: 0.7rem;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 3px 0;
        transition: var(--transition);
      }