      /* ALL YOUR EXISTING STYLES REMAIN UNCHANGED */
      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      body {
          font-family: 'Montserrat', sans-serif;
          color: #1a1a1a;
          overflow-x: hidden;
          background: #fefefe;
          line-height: 1.6;
      }

      /* NAVBAR */
      .nav {
          width: 100%;
          background: rgba(255, 255, 255, 0.85);
          backdrop-filter: blur(12px);
          padding: 14px 0;
          position: fixed;
          top: 0;
          z-index: 1000;
      }

      .nav-container {
          max-width: 88vw;
          margin: auto;
          padding: 0 25px;
          display: flex;
          align-items: center;
          justify-content: space-between;
      }

      /* LOGO */
      .nav-logo {
          display: flex;
          align-items: center;
          gap: 12px;
      }

      .nav-logo img {
          height: 40px;
          /* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); */
      }

      .nav-logo span {
          font-size: 34px;
          font-weight: 600;
          background: linear-gradient(45deg, #8b4513, #d49b52);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          color: transparent;
      }

      /* LINKS */
      .nav-links {
          display: flex;
          gap: 35px;
          align-items: center;
          list-style: none;
      }

      .nav-links li {
          position: relative;
      }

      .nav-links a {
          text-decoration: none;
          font-size: 16px;
          font-weight: 500;
          color: #6b4f3a;
          transition: 0.3s;
          letter-spacing: 0.5px;
          position: relative;
          padding-bottom: 5px;
      }

      .nav-links a:hover {
          color: #c37b3a;
      }

      /* .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #c19a5b;
            transition: width 0.3s ease;
        } */

      .nav-links a:hover:after {
          width: 100%;
      }

      /* RIGHT SIDE (SEARCH + HAMBURGER) */
      .nav-right {
          display: flex;
          align-items: center;
          gap: 18px;
      }

      .search-btn {
          font-size: 20px;
          border: none;
          background: none;
          color: #6b4f3a;
          cursor: pointer;
          transition: 0.3s;
      }

      .search-btn:hover {
          color: #c37b3a;
      }

      .nav-hamburger {
          font-size: 26px;
          cursor: pointer;
          color: #6b4f3a;
          display: none;
      }

      /* MOBILE MENU */
      @media (max-width: 768px) {
          .nav-links {
              position: fixed;
              top: 72px;
              right: 0;
              width: 50%;
              background: #fffdfb;
              flex-direction: column;
              gap: 25px;
              padding: 25px 0;
              display: none;
              box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
              height: calc(100vh - 72px);
              overflow-y: auto;
          }

          .nav-links.show {
              display: flex;
          }

          .nav-hamburger {
              display: block;
          }
      }





/* Section Footer */
.section-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.decoration-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    max-width: 100px;
}

.footer-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #8B0000;
    font-style: italic;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer - UNCHANGED */
.footer {
    background-color: #000000;
    padding: 40px 20px 20px;
    color: #ffffff;
    max-width: 94vw;
    border-radius: 15px;
    margin: 80px auto 0;
    position: relative;
    top: -5px;
}



.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.footer-section img{
    width: 100px;
}

.footer-title img{
    width: 220px;
    filter: drop-shadow(0 2px 4px rgba(170, 170, 170, 0.2));
    height: auto;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    font-size: 15px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.subscription {
    text-align: right;
}

.subscription h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    justify-content: flex-end;
}

.email-input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 15px;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 220px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    background-color: #222;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.email-input::placeholder {
    color: #999;
}

.subscribe-btn {
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #ffed4e;
}

/* Footer Separator Line */
.footer-separator {
    height: 1px;
    background-color: #333;
    margin: 15px 0;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook:hover {
    background-color: #1877F2;
}

.social-icon.linkedin:hover {
    background-color: #0077B5;
}

.social-icon.twitter:hover {
    background-color: #1DA1F2;
}

.social-icon.youtube:hover {
    background-color: #FF0000;
}

.copyright {
    color: #aaaaaa;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .subscription {
        text-align: center;
    }

    .subscribe-form {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .social-links {
        order: 2;
    }

    .copyright {
        order: 1;
    }
}

@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
    }

    .email-input {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .subscribe-btn {
        border-radius: 4px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}







/* ================= SUPER MINIMAL SEARCH OVERLAY ================= */
.search-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    display: none;
    z-index: 9999;
    padding: 30px 40px;
    overflow-y: auto;
}

.search-overlay.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* SEARCH BOX - SEPARATE FROM POPUP */
.search-box-container {
    max-width: 600px;
    margin: 0 auto 7px;
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 3px;
    border-radius: 16px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.search-box i {
    color: #666;
    font-size: 18px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background: transparent;
    color: #222;
    font-weight: 500;
}

.search-box input::placeholder {
    color: #888;
    font-weight: 400;
}

/* POPUP CONTAINER */
.search-popup {
    max-width: 600px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-height: none;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding-bottom: 6px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.3px;
}

.results-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* PRODUCT LIST */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
}

/* Scrollbar styling for product list */
.product-list::-webkit-scrollbar {
    width: 4px;
}

.product-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.product-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.product-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.15);
}

.product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    border-radius: 10px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.product-item:hover {
    background: rgba(0, 0, 0, 0.06);
    padding: 8px;
    transition: all .2s linear;
}

.product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    background: #f5f5f5;
}

.product-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 3px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-category {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.product-price {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    flex-shrink: 0;
}

/* SEPARATOR LINE */
.section-separator {
    height: 1.2px;
    background: rgba(128, 128, 128, 0.2);
    flex-shrink: 0;
}

/* CATEGORIES SECTION */
.categories-section {
    padding: 30px;
}

/* CATEGORY GRID */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.category-item:hover {
    background: rgba(0, 0, 0, 0.06);
    padding: 8px;
    transition: all .2s linear;
}

.category-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    background: #f5f5f5;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 3px;
}

.category-count {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

/* NO RESULTS STATE */
.no-results {
    text-align: center;
    color: #888;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no-results i {
    font-size: 22px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.no-results p {
    font-size: 15px;
    margin-bottom: 5px;
}

/* EMPTY STATE WHEN NO SEARCH */
.empty-search {
    text-align: center;
    color: #888;
    min-height:120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-search i {
    font-size: 22px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.empty-search small {
    font-size: 13px;
    color: #aaa;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .search-overlay {
        padding: 20px;
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .search-box-container {
        margin-bottom: 15px;
    }
    
    .search-box {
        padding: 14px 16px;
    }
    
    .search-box input {
        font-size: 15px;
    }
    
    .products-section,
    .categories-section {
        padding: 24px;
    }
    
    .product-list {
        max-height: 350px;
    }
    
    .product-item,
    .category-item {
        padding: 10px;
        gap: 12px;
    }
    
    .product-image,
    .category-image {
        width: 45px;
        height: 45px;
    }
    
    .section-separator {
        margin: 0 24px;
    }
}

@media (max-width: 480px) {
    .search-overlay {
        padding: 16px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .results-count {
        align-self: flex-end;
        margin-top: -24px;
    }
    
    .product-name,
    .category-name {
        font-size: 14px;
    }
    
    .product-category,
    .category-count {
        font-size: 12px;
    }
    
    .product-list {
        max-height: 300px;
    }
}