#Subheader {
    display: none !important;
}

.tulip-home-hero {
    background: linear-gradient(135deg, #fff8fc 0%, #fff1f7 55%, #fff5ee 100%);
    padding: 34px 20px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f3e8ff;
}

.tulip-home-hero::before {
    content: "";
    display: block;
    width: 220px;
    height: 6px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7e22ce 0%, #c026d3 45%, #ec4899 75%, #f4a07a 100%);
}

.tulip-home-hero h1 {
    margin: 0 0 10px;
    font-size: 44px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #4c1d95;
}

.tulip-home-hero p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.tulip-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.tulip-home-section {
    padding: 55px 0;
}

.tulip-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.tulip-section-header h2 {
    margin: 0;
    font-size: 32px;
    color: #111827;
}

.tulip-view-all {
    text-decoration: none;
    color: #7e22ce;
    font-weight: 700;
}

.tulip-view-all:hover {
    color: #c026d3;
}

.tulip-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Sister banner */
.tulip-home-banner-wrap {
    position: fixed;
    right: 18px;
    top: 280px;
    z-index: 999;
}

.tulip-home-banner {
    width: 125px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 20px 16px;
    text-decoration: none;
    background: linear-gradient(180deg, #f7efe8 0%, #efe4d8 100%);
    border: 1px solid #dccabd;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.tulip-home-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.tulip-home-banner-logo {
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tulip-home-banner-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.tulip-home-banner-content {
    text-align: center;
}

.tulip-home-banner-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8b6f58;
    margin-bottom: 10px;
}

.tulip-home-banner-content h3 {
    font-size: 20px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 10px;
}

.tulip-home-banner-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #5a5a5a;
    margin: 0 0 18px;
}

.tulip-home-banner-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #2a2a2a;
    color: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 1199px) {
    .tulip-home-banner-wrap {
        right: 12px;
        top: 240px;
    }

    .tulip-home-banner {
        width: 150px;
        min-height: 330px;
        padding: 18px 14px;
    }

    .tulip-home-banner-content h3 {
        font-size: 21px;
    }
}

@media (max-width: 1024px) {
    .tulip-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .tulip-home-hero {
        padding: 28px 16px 24px;
    }

    .tulip-home-hero h1 {
        font-size: 30px;
    }

    .tulip-home-hero p {
        font-size: 16px;
    }

    .tulip-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tulip-product-grid {
        grid-template-columns: 1fr;
    }

    .tulip-home-banner-wrap {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        top: auto;
        z-index: 999;
    }

    .tulip-home-banner {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .tulip-home-banner-logo {
        width: 46px;
        flex-shrink: 0;
    }

    .tulip-home-banner-content {
        flex: 1;
        text-align: left;
    }

    .tulip-home-banner-label {
        display: none;
    }

    .tulip-home-banner-content h3 {
        font-size: 16px;
        margin: 0 0 4px;
    }

    .tulip-home-banner-content p {
        font-size: 12px;
        line-height: 1.4;
        margin: 0;
    }

    .tulip-home-banner-btn {
        flex-shrink: 0;
        font-size: 12px;
        padding: 8px 12px;
    }
}