/* Mobile-first approach - default styles for mobile */
.nespresso-promo-landing-page {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
}

.nesspresso-promos {
    margin: 8px 0;
    width: 100%;
}

.nesspresso-promos a {
    text-decoration: none;
    display: block;
    padding: 25px 20px;
    border: none;
    border-radius: 8px;
    background-color: #5d3a5c;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 58, 92, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.nesspresso-promos a:hover {
    background-color: #6d4a6c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 58, 92, 0.4);
}

.nesspresso-promos a:active, .nesspresso-promos a.active {
    background-color: #8b5a8a;
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(139, 90, 138, 0.6), 0 0 0 2px #b8a9b7;
    transition: all 0.1s ease;
    border: 2px solid #d4c3d3;
}

/* Tablet styles - 768px and up */
@media (min-width: 768px) {
    .nespresso-promo-landing-page {
        flex-direction: row;
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .nesspresso-promos {
        margin: 0 10px;
        flex: 1;
    }
    
    .nesspresso-promos a {
        padding: 35px 25px;
        font-size: 17px;
        letter-spacing: 0.8px;
    }
}

/* Desktop styles - 960px and up */
@media (min-width: 960px) {
    .nespresso-promo-landing-page {
        max-width: 960px;
        padding: 0;
    }
    
    .nesspresso-promos a {
        padding: 40px 30px;
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* Large desktop styles - 1200px and up */
@media (min-width: 1200px) {
    .nespresso-promo-landing-page {
        max-width: 1200px;
    }
    
    .nesspresso-promos a {
        padding: 45px 35px;
        font-size: 19px;
    }
}