.wrp {
    padding-top: 200px;
    line-height: 1.5;
}
.wrp img {
    max-width: 100%;
    display: block;
    height: auto;
}

.wrp header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.wrp .header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrp .logo {
    font-size: 4rem;
    font-weight: bold;
    color: #aa273b;
    letter-spacing: -2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wrp .tagline {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wrp .header-image img {
    width: 100%;
    object-fit: cover;
}

.wrp .intro-section {
    margin-bottom: 40px;
    font-size: 16px;
}
.wrp .intro-section p {
    margin-bottom: 5px;
}

.wrp .button-row {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.wrp .btn {
    background-color: #aa273b;
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

.wrp .features-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.wrp .features-box {
    background-color: #aa273b;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.wrp .feature-item {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 20px 0;
    text-align: center;
}

.wrp .feature-item:last-child {
    border-bottom: none;
}

.wrp .feature-item h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.wrp .feature-item p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.wrp .product-item img {
    margin: 0 auto;
}

.wrp .visual-box {
    padding: 20px;
    text-align: center;
}

.wrp .visual-headline {
    color: #aa273b;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.wrp .footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.wrp .footer-info {
    text-align: center;
}

.wrp .footer-logo {
    background-image: url('/assets/img/logos/lilien-invert.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 92px;
    height: 150px;
    margin: 0 auto;
}

.wrp .lilien-text {
    color: #aa273b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.wrp .footer-daisy {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.wrp .footer-details {
    font-weight: bold;
    margin-bottom: 5px;
}

.wrp .footer-sub {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.wrp .shop-cta {
    font-weight: bold;
    text-transform: uppercase;
}

@media (min-width: 900px) {
    .wrp header {
        flex-direction: row;
        align-items: center;
    }
    .wrp .header-left {
        width: 35%;
        padding-right: 20px;
    }
    .wrp .header-image {
        width: 65%;
    }

    .wrp .intro-section {
        position: relative;
    }

    .wrp .features-wrapper {
        flex-direction: row;
    }
    .wrp .features-box {
        width: 40%;
        text-align: right;
    }
    .wrp .feature-item {
        text-align: center;
    }
    .wrp .visual-box {
        width: 60%;
        padding-left: 40px;
        text-align: left;
    }

    .wrp .footer-wrapper {
        flex-direction: row;
        align-items: center;
    }
    .wrp .footer-info {
        width: 50%;
        text-align: center;
    }
    .wrp .footer-image {
        width: 50%;
    }
}