/* Click & Collect Shop Grid Widget Styles */

/* Inherit all styles from shop-grid.css and add specific overrides */
.city-gallery-click-collect-shops-widget {
    width: 100%;
    max-width: 100%;
}

/* Click & Collect specific styling */
.city-gallery-click-collect-shop-item {
    position: relative;
}

/* Add a small Click & Collect badge */
.city-gallery-click-collect-shop-item::before {
    content: "Click & Collect";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #28a745;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Click & Collect button styling */
.city-gallery-click-collect-button {
    background-color: #28a745 !important;
    border: none;
}

.city-gallery-click-collect-button:hover {
    background-color: #218838 !important;
    transform: translateY(-2px);
}

/* Special hover effect for Click & Collect items */
.city-gallery-click-collect-shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.15);
}

/* Responsive adjustments for badge */
@media (max-width: 767px) {
    .city-gallery-click-collect-shop-item::before {
        font-size: 9px;
        padding: 3px 6px;
        top: 8px;
        right: 8px;
    }
}
