/* Short Ads Section Styles */
.short-ads-section {
    position: relative;
    width: 100%;
    background-color: #111;
    padding: 60px 0;
    margin-bottom: 40px;
}

.short-ads-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.short-ads-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.model-card {
    width: 30%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.model-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.brand-content {
    width: 35%;
    text-align: center;
    color: #fff;
}

.brand-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

.brand-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0;
}

.brand-emphasis {
    font-size: 5rem;
    display: block;
    margin-top: 10px;
}

.shop-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 30px;
    margin: 0 auto;
}

.shop-button:hover {
    background-color: #fff;
    color: #111;
}

/* Remove shop-buttons class since it's no longer needed */
.shop-buttons {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .short-ads-content {
        flex-direction: column;
    }

    .model-card {
        width: 100%;
        margin-bottom: 30px;
        max-width: 280px;
    }

    .model-card:last-of-type {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .model-image {
        height: 400px;
    }

    .brand-content {
        width: 100%;
        order: -1;
        margin-bottom: 30px;
    }

    .brand-slogan {
        font-size: 2.5rem;
    }

    .brand-emphasis {
        font-size: 3rem;
    }

    .shop-button {
        position: absolute;
        bottom: 20px;
        width: 80%;
        text-align: center;
    }
} 