.moodshopping-top-button-wrapper {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
}

.moodshopping-top-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ff6b6b;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.moodshopping-top-button:hover {
    background: #ff4757;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    color: #fff;
}

.moodshopping-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0 3rem;
}

.moodshopping-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.moodshopping-header h1 {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.moodshopping-header p {
    color: #666;
    margin: 0;
}

.moodshopping-moods {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.moodshopping-mood-pill {
    padding: .5rem 1rem;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: .9rem;
    text-decoration: none;
    color: #333;
    transition: all .2s ease;
}

.moodshopping-mood-pill:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.moodshopping-mood-pill--active {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: #fff;
}

.moodshopping-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.moodshopping-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.moodshopping-product-card {
    background: #fff;
    border-radius: .5rem;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.moodshopping-product-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: .75rem;
}

.moodshopping-product-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.moodshopping-product-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: .5rem;
    border-radius: .35rem;
}

.moodshopping-product-name {
    font-size: .95rem;
    margin: 0 0 .3rem;
    min-height: 2.3em;
}

.moodshopping-product-price {
    font-weight: 600;
    color: #111;
}

.moodshopping-empty {
    text-align: center;
    color: #777;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .moodshopping-top-button-wrapper {
        position: fixed;
        bottom: 15px;
        top: auto;
        right: 15px;
    }
}
