/* Schmodel Vendor Landing Page - Frontend Styles */

.site-header.header-3 .menu-other.left-part {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    display: none;
}

.site-header .menu-other > li.header-cart {
    display: none;
    align-items: center;
}

.site-header.header-3 .menu-other {
    display: none;
}

.vendor-landing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: 80vh;
    align-items: center;
    padding: 2rem;
}

.landing-content {
    position: relative;
    z-index: 2;
}

.brand-icon {
    max-width: 120px;
    margin-bottom: 2rem;
}

.landing-headline {
    font-family: serif;
    font-style: italic;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.landing-subheading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.landing-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

.landing-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e6c4bc;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.landing-cta:hover {
    background-color: #d4b0a8;
    transform: translateY(-2px);
}

.featured-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
}

.diagonal-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 25%;
    background-color: #e6c4bc;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: 1;
}

.multi-location-notice {
    background: #fff3e0;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border: 1px solid #ffe0b2;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-buttons .landing-cta {
    margin: 0;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .landing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-top-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .mobile-top-section .brand-icon {
        max-width: 100%;
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .headline-button {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }

    .mobile-top-section .landing-headline {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .mobile-top-section .location-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
    }

    .landing-subheading {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .landing-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .multi-location-notice {
        margin-top: 1rem;
    }

    .featured-image {
        max-height: 80vh;
    }
}
