/* Vending Machine Section */
.vending-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
    position: relative;
}

.vending-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--stripe-pattern);
    z-index: 5; /* ensure the safety-shoe hovers didn't overlap this */
}

.vending-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    position: relative;
}

.vending-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

.vending-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vending-card {
    background: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-color);
    border-top: 2px solid var(--secondary-color);
}

.vending-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(236,167,1,0.3);
    border-left-width: 8px;
}

.vending-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.vending-card h3::before {
    content: '⚠ ';
    color: var(--primary-color);
    font-size: 1.5rem;
}

.vending-card p {
    color: #666;
    font-size: 1.1rem;
}