/* Shop Overlay */
#shopOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    display: none;
    overflow-y: auto;
}

.shop-header {
/*     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: var(--yellow-gradient);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.shop-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.shop-header p {
    margin: 0.5rem 0 0;
    opacity: 0.9;
}

.shop-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
}

.shop-category {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.shop-category:active {
    transform: scale(0.98);
}

.shop-category-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.shop-category-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.shop-category-desc {
    font-size: 0.85rem;
    color: #666;
}

.featured-product {
    margin: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.product-badge {
    display: inline-block;
    background: #fbbf24;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.popular-section {
    padding: 1rem;
}

.popular-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shop-item {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
