
        :root {
            --brand-color: #C47C5C;
            --brand-hover: #004d38;
            --copper-accent: #B87333;
            --bg-light: #FBFCF8;
            --card-border: #f0ebd8;
            --text-main: #000;
        }

        body {
          
            background-color: var(--bg-light);
       
            margin: 0;
            padding: 0;
        }

        .page-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Sort Filter Bar Styling */
        .filter-sort-bar {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .sort-dropdown-container {
            position: relative;
            display: inline-block;
        }

        .sort-select {
            appearance: none;
            background-color: #ffffff;
            border: 1px solid var(--card-border);
            padding: 10px 35px 10px 15px;
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }

        .sort-select:focus {
            outline: none;
            border-color: var(--brand-color);
            box-shadow: 0 4px 10px rgba(0, 106, 78, 0.1);
        }

        .sort-dropdown-container::after {
            content: "\f077";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.8rem;
            color: var(--text-main);
            pointer-events: none;
        }

        /* Custom Grid Layout without Bootstrap */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 20px;
            margin-bottom: 50px;
        }

        .product-card {
            background: #ffffff;
            border: 1px solid var(--card-border);
            border-radius: 18px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .product-img-wrapper {
            position: relative;
            width: 100%;
            padding-top: 100%; /* Square Aspect Ratio */
            background: #fdfdfd;
            overflow: hidden;
        }

        .product-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        .product-img.hover-img {
            opacity: 0;
            z-index: 2;
        }

        .product-card:has(.hover-img):hover .product-img.main-img {
            opacity: 0;
        }

        .product-card:has(.hover-img):hover .product-img.hover-img {
            opacity: 1;
        }

        .product-body {
            padding: 14px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-title {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text-main);
            text-decoration: none;
            margin-bottom: 10px;
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price-action {
            margin-top: auto;
        }

        /* Price and Discount Styles */
        .price-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 1.05rem;
            font-weight: 800;
            color: #000;
        }

        .regular-price {
            font-size: 0.85rem;
            font-weight: 600;
            color: #888;
            text-decoration: line-through;
        }

        .discount-badge {
            background-color: #e6f4ea;
            color: #137333;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .btn-book-now {
            background: #C47C5C;
            color: #ffffff;
            font-weight: 700;
            font-size: 0.82rem;
            border-radius: 10px;
            padding: 8px 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background 0.25s ease;
            box-shadow: 0 4px 10px rgba(0, 106, 78, 0.2);
            width: 100%;
            box-sizing: border-box;
        }

        .btn-book-now:hover {
            background: #7C7464;
            color: #fff;
        }

        .not-found-box {
            grid-column: 1 / -1;
            text-align: center;
            padding: 50px 0;
        }

        /* Responsive Breakpoints for Grid */
        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .filter-sort-bar {
                justify-content: stretch;
            }
            .sort-dropdown-container {
                width: 100%;
            }
            .sort-select {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }




    .custom-category-section {
        padding: 10px 0;
        background-color: #f5f5f5;
        margin-bottom: 5px;
    }

    .custom-category-section .category-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .custom-category-section .category-row::-webkit-scrollbar {
        display: none;
    }

    .custom-category-section .category-item {
        text-decoration: none;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 120px;
        cursor: pointer;
    }

    .custom-category-section .image-wrapper {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .custom-category-section .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

    .custom-category-section .category-name {
        margin-top: 10px;
        font-size: 0.9rem;
        font-weight: 800;
        color: #C47C5C !important;
        display: block;
        line-height: 1.2;
        transition: color 0.3s ease;
    }

    .custom-category-section .category-item:hover .image-wrapper {
        box-shadow: 0 6px 15px rgba(0, 106, 78, 0.2);
        transform: translateY(-3px);
    }

    .custom-category-section .category-item:hover .image-wrapper img {
        transform: scale(1.08);
    }

    .custom-category-section .category-item:hover .category-name {
         color: #7C7464 !important;
    }

    @media (max-width: 768px) {
        .custom-category-section .category-item {
            width: 90px;
        }
        .custom-category-section .image-wrapper {
            width: 90px;
            height: 90px;
        }
        .custom-category-section .category-name {
            font-size: 0.8rem;
        }
        .custom-category-section {
            padding: 20px 0;
            margin-bottom: 20px;
        }
    }