
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
        scroll-behavior: smooth;
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 5%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
        height: 85px;
      }

#mainNav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #fff; 
    border-bottom: 1px solid #ddd; 
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-link {
    text-decoration: none;
    color: #000; 
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    text-align: center;
    margin-left: 100px;
    position: absolute; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px; 
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000; 
    padding: 5px 10px;
  }
  
  .nav-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  
  
  @media (max-width: 768px) {
    #mainNav{
      display: none;
    }
}
        

      .logo {
        flex: 1;
      }

      .logo img {
        height: 150px;
        width: auto;
        object-fit: contain;
      }

      .logo-text {
        font-size: 1.5rem;
        font-weight: 600;
        color: #e67e22;
        letter-spacing: 0.5px;
      }

      .nav-links {
        flex: 1;
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        margin: 0 2rem;
        font-size: 1.1rem;
      }

      .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 1.05rem;
        padding: 0.5rem 0;
        transition: all 0.3s ease;
        position: relative;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #e67e22;
        transition: width 0.3s ease;
      }

      .nav-links a:hover {
        color: #e67e22;
      }

      .nav-links a:hover::after,
      .nav-links a.active::after {
        width: 100%;
      }

      .nav-links a.active {
        color: #e67e22;
      }

      

      

      
      nav.scrolled {
        height: 70px;
        padding: 0.5rem 5%;
      }

      nav.scrolled .logo img {
        height: 110px;
      }

      nav.scrolled .logo-text {
        font-size: 1.0rem;
      }

      


      section {
        min-height: 100vh;
        padding: 80px 5% 2rem;
      }

      #home {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
          url("https://images.unsplash.com/photo-1517433670267-08bbd4be890f?ixlib=rb-4.0.3");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
      }

      #home h1 {
        font-size: 3.5rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      }

      #home p {
        font-size: 1.2rem;
        max-width: 600px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      }

      .cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        background: #e67e22;
        color: white;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
      }

      .cta-btn:hover {
        background: #d35400;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
      }

      .cta-btn:active {
        transform: translateY(0);
      }

      .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #333;
      }

      .section-content {
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
      }

      .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .product-card {
        background: #fff;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      #about {
        background-color: #fff9f5;
        position: relative;
        overflow: hidden;
      }

      #about::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: #ffe4d4;
        border-radius: 50%;
        opacity: 0.5;
        z-index: 0;
      }

      .about-container {
        
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      

      .about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      }

      .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .about-text h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 1.5rem;
        position: relative;
      }

      .about-text h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #e67e22;
      }

      .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #666;
        margin-bottom: 1.5rem;
      }

      .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .feature-icon {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e67e22;
        box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
      }

      @media (max-width: 768px) {
        .about-container {
          grid-template-columns: 1fr;
        }
      }

      
      #products {
        background-color: #fff;
        padding: 80px 5%;
      }

      .products-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .products-header h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 1rem;
      }

      .products-header p {
        color: #666;
        max-width: 600px;
        margin: 0 auto;
      }

      .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        max-width: 1400px;
        margin: 0 auto;
      }

      .product-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }

      .product-card:hover {
        transform: translateY(-10px);
      }

      .product-image {
        height: 250px;
        overflow: hidden;
        position: relative;
      }

      .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .product-card:hover .product-image img {
        transform: scale(1.1);
      }

      .product-info {
        padding: 1.5rem;
      }

      .product-category {
        color: #e67e22;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
      }

      .product-title {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 0.5rem;
      }

      .product-description {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 1rem;
      }

      .product-price {
        font-size: 1.2rem;
        color: #e67e22;
        font-weight: 600;
      }

      .product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
      }

      .product-quantity-section {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .product-qty-controls {
        display: flex;
        align-items: center;
        gap: 6px;
        border: 1px solid #dfc9b2;
        border-radius: 8px;
        padding: 4px 6px;
        background: #faf7f4;
      }

      .product-qty-btn {
        border: none;
        background: #e67e22;
        color: #fff;
        width: 24px;
        height: 24px;
        padding: 0;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 700;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease;
      }

      .product-qty-btn:hover {
        background: #d35400;
      }

      .product-qty-display {
        min-width: 24px;
        text-align: center;
        font-weight: 600;
        color: #2f261f;
        font-size: 14px;
      }

      .product-add-btn {
        padding: 8px 14px;
        font-size: 0.95rem;
        background: #e67e22;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.3s ease;
      }

      .product-add-btn:hover {
        background: #d35400;
      }

      .order-btn {
        width: 100%;
        padding: 0.8rem;
        background: #e67e22;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      .order-btn:hover {
        background: #d35400;
      }

      
      #contact {
        background: linear-gradient(
            rgba(255, 249, 245, 0.9),
            rgba(255, 249, 245, 0.9)
          ),
          url("bakery-pattern.jpg");
        background-size: cover;
        padding: 80px 5%;
      }

      .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }

      .contact-info {
        padding: 2rem;
      }

      .contact-info h3 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 1.5rem;
      }

      .contact-details {
        margin-bottom: 2rem;
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
      }

      .contact-icon {
        width: 40px;
        height: 40px;
        background: #e67e22;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
      }

      .contact-form {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: border-color 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        border-color: #e67e22;
        outline: none;
      }

      .submit-btn {
        width: 100%;
        padding: 1rem;
        background: #e67e22;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      .submit-btn:hover {
        background: #d35400;
      }

      .business-hours {
        margin-top: 2rem;
      }

      .business-hours h4 {
        color: #333;
        margin-bottom: 1rem;
      }

      .hours-list {
        list-style: none;
      }

      .hours-list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        color: #666;
      }

      @media (max-width: 768px) {
        .contact-container {
          grid-template-columns: 1fr;
        }
      }

      .logo-link {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        text-decoration: none;
        height: 100%;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .logo-link:hover {
        opacity: 0.9;
      }

      
      .about-images {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .main-image {
        width: 100%;
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .main-image:hover img {
        transform: scale(1.05);
      }

      .image-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        height: 150px;
      }

      .image-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .image-grid img:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      }

      
      @media (max-width: 768px) {
        .about-container {
          grid-template-columns: 1fr;
        }

        .image-grid {
          height: 120px;
        }

        .main-image {
          height: 250px;
        }
      }

      
      @keyframes imageLoad {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .about-images img {
        animation: imageLoad 0.6s ease forwards;
      }

      .image-grid img:nth-child(1) {
        animation-delay: 0.2s;
      }
      .image-grid img:nth-child(2) {
        animation-delay: 0.4s;
      }
      .image-grid img:nth-child(3) {
        animation-delay: 0.6s;
      }

      .nav-spacer {
        flex: 1;
      }

      
      #blog {
        padding: 80px 5%;
        background: #fff;
      }

      .blog-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .blog-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }

      .blog-card:hover {
        transform: translateY(-5px);
      }

      .blog-image {
        height: 200px;
        overflow: hidden;
      }

      .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .blog-content {
        padding: 1.5rem;
      }

      .blog-date {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
      }

      .read-more {
        color: #e67e22;
        text-decoration: none;
        font-weight: 500;
        display: inline-block;
        margin-top: 1rem;
      }

      
      #reviews {
        padding: 80px 5%;
        background: #fff9f5;
      }

      .reviews-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .reviews-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .review-card {
        background: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      .review-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
      }

      .reviewer-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
      }

      .stars {
        color: #ffd700;
      }

      .review-text {
        color: #666;
        line-height: 1.6;
        margin-bottom: 1rem;
      }

      .review-date {
        color: #999;
        font-size: 0.9rem;
      }

      .leave-review-btn {
        display: block;
        margin: 3rem auto 0;
        padding: 1rem 2rem;
        background: #e67e22;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      .leave-review-btn:hover {
        background: #d35400;
      }

      
      .map-container {
        width: 100%;
        height: 450px;
        margin-top: -2rem;
      }

      .map-container iframe {
        width: 100%;
        height: 100%;
      }

      
      @media (max-width: 768px) {
        .blog-grid,
        .reviews-container {
          grid-template-columns: 1fr;
        }

        .map-container {
          height: 350px;
        }
      }

      
      #menu {
        padding: 80px 5%;
        background: #fff;
      }

      .menu-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .menu-header h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 1rem;
      }

      .menu-filters {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 2rem 0;
        flex-wrap: wrap;
      }

      .filter-btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid #e67e22;
        background: transparent;
        color: #e67e22;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
      }

      .filter-btn.active,
      .filter-btn:hover {
        background: #e67e22;
        color: white;
      }

      .menu-section {
        margin-bottom: 4rem;
      }

      .menu-section h3 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 2rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e67e22;
        display: inline-block;
      }

      .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
        transition: all 0.3s ease;
      }

      .menu-item {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        opacity: 1;
        transform: scale(1);
      }

      .menu-item.show {
        opacity: 1;
        transform: scale(1);
      }

      .menu-item:not(.show) {
        opacity: 0;
        transform: scale(0.8);
        height: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
      }

      .menu-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }

      .menu-item-content {
        padding: 1.5rem;
      }

      .menu-item h4 {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 0.5rem;
      }

      .menu-item p {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 1rem;
      }

      .menu-item-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
      }

      .price {
        font-size: 1.2rem;
        color: #e67e22;
        font-weight: 600;
      }

      .menu-qty-section {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .menu-qty-controls {
        display: flex;
        align-items: center;
        gap: 6px;
        border: 1px solid #dfc9b2;
        border-radius: 8px;
        padding: 4px 6px;
        background: #faf7f4;
      }

      .menu-qty-btn {
        border: none;
        background: #e67e22;
        color: #fff;
        width: 24px;
        height: 24px;
        padding: 0;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 700;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease;
      }

      .menu-qty-btn:hover {
        background: #d35400;
      }

      .menu-qty-display {
        min-width: 24px;
        text-align: center;
        font-weight: 600;
        color: #2f261f;
        font-size: 14px;
      }

      .menu-add-btn {
        padding: 8px 14px;
        font-size: 0.95rem;
        background: #e67e22;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.3s ease;
      }

      .menu-add-btn:hover {
        background: #d35400;
      }

      .tags {
        display: flex;
        gap: 0.5rem;
      }

      .tags i {
        color: #e67e22;
        font-size: 1.1rem;
      }

      
      @media (max-width: 768px) {
        .menu-grid {
          grid-template-columns: 1fr;
        }

        .filter-btn {
          padding: 0.6rem 1.2rem;
          font-size: 0.9rem;
        }
      }

      
      .review-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        justify-content: center;
        align-items: center;
      }

      .review-popup.active {
        display: flex;
      }

      .review-popup-content {
        background: white;
        padding: 2rem;
        border-radius: 10px;
        width: 90%;
        max-width: 500px;
        position: relative;
      }

      .close-popup {
        position: absolute;
        right: 1rem;
        top: 0.5rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: #666;
      }

      .close-popup:hover {
        color: #333;
      }

      .star-rating {
        display: flex;
        gap: 0.5rem;
        font-size: 1.5rem;
        margin: 0.5rem 0;
      }

      .star-rating i {
        cursor: pointer;
        color: #ddd;
        transition: color 0.3s ease;
      }

      .star-rating i.fas {
        color: #ffd700;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: inherit;
      }

      .submit-review-btn {
        background: #e67e22;
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        font-size: 1rem;
        transition: background 0.3s ease;
      }

      .submit-review-btn:hover {
        background: #d35400;
      }

      
      @keyframes slideIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .review-card.new {
        animation: slideIn 0.5s ease forwards;
      }

      
      .map-container {
        width: 100%;
        height: 450px;
      }

      .location-details {
        background-color: #f9f9f9;
        padding: 2rem;
        border-radius: 10px;
        margin-top: -2rem;
      }

      .location-info {
        text-align: center;
      }

      .location-info h3 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 1rem;
      }

      .location-info address {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 1rem;
      }

      .location-info .location-contact {
        font-size: 1.2rem;
        color: #666;
      }
      .auth-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}


.btn {
  width: 160px;              
  padding: 12px 0;
  text-align: center;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}


.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}


.btn-filled {
  background: #e67e22;
  color: white;
  border: none;
}


.btn-outline:hover {
  background: white;
  color: #e67e22;
}

.btn-filled:hover {
  background: #d35400;
}
.auth-nav {
  position: absolute;
  right: 20px;
}

.logout-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: #e67e22;
  color: white;
  cursor: pointer;
  font-weight: 500;
  display: none; 
}

.logout-btn:hover {
  background: #d35400;
}