/* Inspired Layout 2: Services Grid & Mini Offers */

/* Service/Menu Grid (mimics "More Services" in image) */
.grid-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 items per row */
    gap: 16px 8px;
    /* Vertical gap larger */
    padding: 0 16px;
    margin-bottom: 32px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
}

.menu-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    /* Circle icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    /* Neon accent */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.menu-item:hover .menu-icon-box {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.menu-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Mini Offer Cards (mimics "Offers" in image) */
.offers-scroller {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
    margin-bottom: 32px;
}

.offer-card-mini {
    flex: 0 0 140px;
    /* Fixed small width */
    background: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.offer-thumb {
    height: 90px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.offer-details {
    padding: 10px;
}

.offer-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #000;
    background: var(--accent);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 4px;
}

.offer-text {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.3;
}