 .product-toolbar {
     max-width: 1100px;
     margin: 24px auto 0;
     padding: 0 20px;
     display: flex;
     justify-content: flex-end;
 }

 .search-bar {
     width: 100%;
     max-width: 320px;
 }

 .search-bar input {
     width: 100%;
     border: 1px solid #d0d7de;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .card {
     min-height: 280px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .card img {
     height: 220px;
     object-fit: cover;
 }

 .card h3 {
     padding: 16px 18px 18px;
     font-size: 1rem;
     line-height: 1.5;
     color: #0f172a;
     margin: 0;
 }

 .empty-state {
     display: none;
     justify-content: center;
     align-items: center;
     min-height: 140px;
     color: #64748b;
     font-size: 1rem;
     padding: 20px;
 }



 @media screen and (max-width: 1050px) {
     header {
         padding: 1rem 1.5rem;
         gap: 0.8rem 1rem;
     }

     .Logo h1 {
         font-size: 1.5rem;
     }

     .phone p {
         font-size: 0.85rem;
         padding: 0.3rem 1rem;
     }
 }

 /* medium screens – stack search & phone */
 @media screen and (max-width: 860px) {
     header {
         flex-direction: row;
         flex-wrap: wrap;
         justify-content: flex-start;
     }

     .Logo {
         flex: 1 1 100%;
         justify-content: center;
         margin-bottom: 0.2rem;
     }

     .Logo h1 {
         font-size: 1.8rem;
     }

     .quote-nav-btn {
         order: 2;
         margin-left: auto;
     }

     .search-bar {
         order: 3;
         flex: 1 1 180px;
         min-width: 140px;
     }

     .phone {
         order: 4;
         flex: 0 1 auto;
         margin-left: auto;
     }

     .phone p {
         font-size: 0.8rem;
         padding: 0.25rem 1rem;
     }

     .navbar ul {
         gap: 0.2rem 0.6rem;
     }

     .navbar ul li a {
         font-size: 0.85rem;
     }
 }

 /* mobile devices – collapse nav, show hamburger */
 @media screen and (max-width: 700px) {
     .header-wrapper {
         border-radius: 20px;
     }

     header {
         padding: 0.8rem 1rem;
         flex-direction: row;
         flex-wrap: wrap;
         justify-content: center;
     }

     .Logo {
         flex: 1 1 100%;
         justify-content: center;
         margin-bottom: 0.2rem;
         gap: 0.3rem;
     }

     .Logo img {
         height: 44px;
     }

     .Logo h1 {
         font-size: 1.6rem;
         white-space: normal;
     }

     .Logo p {
         font-size: 0.7rem;
         padding: 0.1rem 0.8rem;
         white-space: normal;
     }

     .quote-nav-btn {
         font-size: 0.8rem;
         padding: 0.4rem 1.2rem;
         order: 1;
         margin-left: 0;
     }

     .search-bar {
         order: 2;
         flex: 1 1 150px;
         min-width: 120px;
         margin: 0.2rem 0;
     }

     .phone {
         order: 3;
         flex: 1 1 100%;
         justify-content: center;
         margin: 0.2rem 0 0 0;
     }

     .phone p {
         font-size: 0.8rem;
         padding: 0.3rem 1.2rem;
         width: auto;
         justify-content: center;
     }

     /* navbar: show hamburger, hide list by default */
     .navbar {
         padding: 0.5rem 1rem 0.8rem 1rem;
         flex-wrap: wrap;
         justify-content: space-between;
     }

     .menu-btn {
         display: inline-flex;
         align-items: center;
         justify-content: center;
     }

     .navbar ul {
         display: none;
         flex-direction: column;
         width: 100%;
         margin-top: 0.8rem;
         gap: 0.2rem;
         background: #f8faff;
         padding: 0.8rem 0.5rem;
         border-radius: 24px;
         border: 1px solid #e8eef5;
     }

     .navbar ul.show {
         display: flex;
     }

     .navbar ul li {
         width: 100%;
         text-align: center;
         border-bottom: 1px solid #eef2f7;
         padding: 0.3rem 0;
     }

     .navbar ul li:last-child {
         border-bottom: none;
     }

     .navbar ul li a {
         font-size: 1rem;
         padding: 0.5rem 0;
         display: block;
         white-space: normal;
         border-bottom: none;
     }

     .navbar ul li a:hover {
         background: #e4ecf5;
         border-radius: 40px;
         border-bottom: none;
     }
 }

 /* very small screens (<= 430px) */
 @media screen and (max-width: 430px) {
     .Logo h1 {
         font-size: 1.3rem;
     }

     .Logo img {
         height: 36px;
     }

     .quote-nav-btn {
         font-size: 0.7rem;
         padding: 0.3rem 1rem;
     }

     .search-bar input {
         padding: 0.4rem 1rem;
         font-size: 0.8rem;
     }

     .phone p {
         font-size: 0.7rem;
         padding: 0.2rem 0.8rem;
     }

     .navbar {
         padding: 0.3rem 0.8rem 0.6rem 0.8rem;
     }
 }

 /* show hamburger also on 750–700 if needed, but we use 700 */
 /* optional: for 600px we keep hamburger active */

 /* small fix for landscape phones */
 @media screen and (max-width: 700px) and (orientation: landscape) {
     .navbar ul {
         max-height: 60vh;
         overflow-y: auto;
     }
 }

 /* utility class for toggling (JS) */
 .navbar ul.show {
     display: flex !important;
 }






 .card {
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .whatsapp-order-btn {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 10;
            white-space: nowrap;
            border: none;
            cursor: pointer;
        }

        .whatsapp-order-btn i {
            font-size: 1.2rem;
        }

        .whatsapp-order-btn:hover {
            background: linear-gradient(135deg, #128C7E, #075E54);
            transform: translateX(-50%) translateY(0) scale(1.05);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
        }

        /* Show button when card is active */
        .card.card-active .whatsapp-order-btn {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Card overlay when active */
        .card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.3);
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 5;
        }

        .card.card-active::after {
            opacity: 1;
        }

        /* Ensure image and text stay above overlay */
        .card img,
        .card h3 {
            position: relative;
            z-index: 6;
        }

        /* Mobile touch feedback */
        @media (max-width: 768px) {
            .whatsapp-order-btn {
                padding: 14px 28px;
                font-size: 1rem;
            }

            .card:active {
                transform: scale(0.98);
            }
        }