/* Shopping Section */
.shopping {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shopping .section-title {
    margin-bottom: 1rem;
    color: #e0e7ff;
}

.shopping p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.shopping-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.shopping-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.shopping-card:hover {
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
}

.shopping-card:hover .highlight {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shopping-card:hover .highlight-blue {
    background: linear-gradient(135deg, #8000ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shopping-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shopping-card h3 {
    font-family: 'Rock Salt', cursive;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shopping-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.shopping-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shopping-info h4 {
    font-weight: 600;
    color: #e0e7ff;
    margin-bottom: 1rem;
}

.shopping-info p {
    color: #cbd5e1;
    line-height: 1.7;
}