/* Express Collection Specific Styles */
.express-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.express-hero .collection-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.express-hero .collection-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Express Buttons Grid - HORIZONTAL FLOW */
.express-buttons-grid {
    padding: 80px 0;
    background: #fff;
}

.buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.button-item {
    flex: 0 0 calc(25% - 20px); /* 4 items per row */
    display: flex;
    justify-content: center;
    align-items: center;
}

.express-btn {
    background: #2c5530;
    color: white;
    border: none;
    padding: 20px 15px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-wrap: break-word;
}

.express-btn:hover {
    background: #4a7c59;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.express-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .button-item {
        flex: 0 0 calc(33.333% - 20px); /* 3 items per row */
    }
}

@media (max-width: 992px) {
    .button-item {
        flex: 0 0 calc(50% - 20px); /* 2 items per row */
    }
}

@media (max-width: 768px) {
    .buttons-container {
        gap: 15px;
    }
    
    .button-item {
        flex: 0 0 calc(50% - 15px); /* 2 items per row */
    }
    
    .express-btn {
        padding: 15px 10px;
        font-size: 1.1rem;
        min-height: 70px;
    }
    
    .express-hero .collection-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .button-item {
        flex: 0 0 100%; /* 1 item per row */
    }
    
    .express-hero {
        padding: 100px 0 60px;
    }
    
    .express-hero .collection-hero-content h1 {
        font-size: 2rem;
    }
    
    .express-buttons-grid {
        padding: 60px 0;
    }
    
    .express-btn {
        padding: 12px 10px;
        font-size: 1rem;
        min-height: 60px;
    }
}