 :root {
        --rose-600: #b45b6b;
        --rose-400: #ffb6b9;
        --cream: #fff8f8;
        --leaf: #6AB187;
        --shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
        }
    .btn-buy{
        background-color: var(--leaf) !important;
        color: white !important;
    }
        /* page base */
        body { background: var(--cream); color: #4a3f35; }

        /* Parallax / Hero like workshops */
        .hero-products {
        background: linear-gradient(180deg, rgba(255,182,185,0.18), rgba(255,255,255,0.98))
        url('{{ asset("") }}') center/cover fixed no-repeat;
        padding: 70px 0 60px;
        text-align: center;
        position: relative;
        }
        .hero-products h1 { color: var(--rose-600); font-size: 42px; font-weight:700; letter-spacing:1px;    }
        .hero-products 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;
        }

        /* product grid */
        .products-grid { margin-top:30px; display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
        @media (max-width: 992px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 576px) { .products-grid { grid-template-columns: 1fr; } }

        /* card */
        .product-card {
        background:#fff; border-radius:12px; box-shadow:var(--shadow); overflow:hidden;
        display:flex; flex-direction:column; height:100%;
        transition: transform .25s, box-shadow .25s;
        }
        .product-card:hover { transform: translateY(-8px); box-shadow: 0 14px 45px rgba(180,91,107,0.12); }

        .product-media { position:relative; }
        .product-media img { width:100%; height:230px; object-fit:cover; display:block; }

        /* share overlay button top-right */
        .share-overlay {
        position:absolute; top:10px; right:10px; z-index:5;
        background: rgba(255,255,255,0.9); border-radius:8px; padding:6px;
        box-shadow:0 4px 10px rgba(0,0,0,0.08); cursor:pointer;
        }
        .share-overlay i { color: var(--rose-600); }

        /* content */
        .product-body { padding:14px; display:flex; flex-direction:column; flex:1; justify-content:space-between; }
        .product-title a{ color:var(--rose-600) !important; font-weight:700; font-size:1.05rem; margin:0 0 6px 0; text-transform:capitalize; }
        .product-desc { color:#6b5560; font-size:0.95rem; margin-bottom:8px; }

        /* meta row */
        .meta-row { display:flex; gap:8px; font-size:0.9rem; color:#6b6b6b; flex-wrap:wrap; align-items:center; }

        /* price */
        .price { color: #1b8b5e; font-weight:700; }

        /* action row: quantity + add + buy */
        .action-row { display:flex; gap:8px; align-items:center; margin-top:10px; justify-content:center; }
        .action-row .qty { width:86px; border-radius:8px; text-align:center; padding:6px; border:1px solid rgba(0,0,0,0.08); }
        /* Quantity box with + and - buttons */
        .qty-container {
        display: flex;
        align-items: center;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
        width: 60px;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .qty-btn {
        width: 14px;
        height: 32px;
        border: none;
        /* background: var(--rose-400); */
        color:var(--rose-600);
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background 0.3s;
        }
        .qty-btn:hover {
        background: #fff;
        }
        .qty-input {
        width: 30px;
        border: none;
        text-align: center;
        font-weight: 600;
        color: #4a3f35;
        font-size: 15px;
        outline: none;
        background: #fff;
        }

        .btn-cart, .btn-buy { border-radius:8px; padding:8px 12px; font-size:14px; cursor:pointer; border:none; }
        .btn-cart { background:linear-gradient(90deg,var(--rose-600),#8f3d4c); color:#fff; }
        .btn-buy { background:#fff; color:var(--rose-600); border:1px solid rgba(180,91,107,0.12); }

        .card-footer { padding:12px 14px; background:#fffafc; border-top:1px solid rgba(180,91,107,0.06); border-radius:0 0 12px 12px; text-align:center; }

        /* small helpers */
        .price-small span{ color:#ce2727;  font-size:1.2rem; font-weight: bolder;
               }
        .rating { display:inline-flex; gap:2px; align-items:center; color:#ffc107; }
        .category-menu { background:#fff; padding:14px; border-radius:12px; box-shadow:var(--shadow); }
       .category-menu ul li a{     }
        .pagination {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin: 25px 0;
        list-style: none;
        padding: 0;
        }
        .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);
        }

        @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%;
        }
        }
        /* .......model..  */
        .modal-content {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: none;
    background-color:var(--rose-600); /* Primary color for header */
    color: #fff; /* White text for better contrast */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.review-circle{
    background-color: var(--rose-400);
}

.modal-body {
    background-color: #fff; /* White background for modal body */
}


/* Share Modal Specific Styles */
.share-modal .modal-header {
    background-color:  var(--rose-600); /* Blue header for share modal */
}
  /* Clear Button */
        .clear-btn {
            background: transparent;
            border: none;
            color: var(--rose-600);
            font-size: 18px;
            cursor: pointer;
            padding: 4px;
        }

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