  /* 🌸 Palette & Base */
    :root {
    --rose-600: #b45b6b;
    --rose-400: #ffb6b9;
    --cream: #fff8f8;
    --leaf: #6AB187;
    --shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
    }

    body {
    background: var(--cream);
    color: #4a3f35;
    }

    /* 🌷 Hero */
    .hero-hero {
    background: linear-gradient(180deg, rgba(255,182,185,0.18), rgba(255,255,255,0.98)),
                url('{{ asset("img/workshop_banner.jpg") }}') center/cover fixed no-repeat;
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    }
    .hero-hero h1 {
    color: var(--rose-600);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    }
    .hero-hero p.lead {
    color: #6b5560;
    margin: 0 auto;
    max-width: 720px;
    font-size: 16px;
    }

    /* 🌿 Toolbar */
    .toolbar-card {
    margin-top: -50px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    }

    /* Left side */
    .toolbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    }
    .toolbar-left a {
    color: var(--rose-600);
    font-weight: 600;
    text-decoration: none;
    }
    .toolbar-left a:hover { text-decoration: underline; }

    /* 🔍 Search box */
    .search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(180,91,107,0.12);
    padding: 6px 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    }
    .search-form input[type="search"] {
    border: none;
    outline: none;
    padding: 6px 8px;
    width: 220px;
    font-size: 14px;
    color: #4a3f35;
    }
    .search-form .search-submit {
    background: var(--rose-600);
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    }
    .search-form .clear-icon {
    color: #999;
    cursor: pointer;
    font-size: 18px;
    }

    /* Right side */
    .toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    }
    .currency-select,
    .sort-select {
    border: 1px solid rgba(180,91,107,0.12);
    border-radius: 8px;
    padding: 8px 10px;
    background: #fff;
    font-size: 14px;
    }

    /* 🌼 Workshop Cards */

    /* ---------- GRID ---------- */
    /* Grid Layout */
    .grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    }
    .workshop-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    }
    .workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 45px rgba(180,91,107,0.15);
    }
    .workshop-media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    }
    .workshop-content {
    padding: 16px 18px;
    flex: 1;
    }
    .workshop-title {
    color: var(--rose-600);
    font-weight: 700;
    font-size: 1.3rem;

    }
    .workshop-desc { color:#6b5560; font-size:0.95rem; line-height:1.4; }
    .meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: #6b6b6b;
    }
    .meta-row i { color: var(--rose-600); margin-right: 6px; }

    .workshop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid rgba(180,91,107,0.1);
    background: #fffafc;
    }
    .btn-ghost, .btn-primary {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.3s;
    }
    .btn-ghost {
    background: #fff;
    color: var(--rose-600);
    border: 1px solid var(--rose-600);
     font-size: 19px;
    }
    .btn-ghost:hover { background: var(--rose-600); color: #fff;
     }
    .btn-primary {
    background: linear-gradient(90deg, #b45b6b, #8f3d4c);
    color: #fff;
    border: none;
    font-size: 19px;
    }
    .price { color: #1b8b5e; font-weight: 700; }
    /* Center if only 1 card */
    .grid:only-child,
    .grid.single-item {
        justify-content: center;
    }

    /* Make grid behave like a flexbox only when 1 item */
    .grid.single-item {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    /* Fix width of the card when centered */
    .grid.single-item .workshop-card {
        max-width: 320px;
    }
     /* Clear Button */
        .clear-btn {
            background: transparent;
            border: none;
            color: var(--rose-600);
            font-size: 18px;
            cursor: pointer;
            padding: 4px;
        }

        .clear-btn:hover {
            color: #ff4f7a;
        }

        /* Pagination */
    /* Pagination */
    .pagination {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin: 25px 0;
        list-style: none;
        padding: 0;
    }
    .pagination li{
    gap: 10px;
    }
    .pagination .page-item .page-link {
        border-radius: 8px;
        color: var(--rose-600);
        font-weight: 600;
        border: 1px solid rgba(180,91,107,0.2);
    }
    .pagination .page-item.active .page-link {
        background-color: var(--rose-600);
        color: #fff;
        border-color: var(--rose-600);
    }


    /* Responsive fix */
    @media (max-width: 576px) {
        .pagination .page-link {
            width: 32px;
            height: 32px;
            font-size: 0.85rem;
        }
    }

    /* 📱 Responsive */
    @media (max-width: 992px) {
    .toolbar-card {
        flex-direction: column;
        align-items: stretch;
    }
    .toolbar-left,
    .toolbar-right {
        justify-content: space-between;
        width: 100%;
    }
    .search-form {
        width: 100%;
    }
    .search-form input[type="search"] {
        width: 100%;
    }
    }
