.merch-page {
    min-height: calc(100vh - 80px);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 80px 20px;
}


.merch-hero {
    width: 100%;
    max-width: 800px;

    text-align: center;

    padding: 70px 40px;

    background: #151515;

    border: 1px solid rgba(255, 140, 0, 0.15);

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);

    position: relative;

    overflow: hidden;
}


/* Oranžová linka nahoře */

.merch-hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #ff8c00;
}


/* Ikona */

.merch-icon {
    font-size: 64px;

    margin-bottom: 15px;
}


/* Nadpis */

.merch-hero h1 {
    margin: 0;

    color: #ff8c00;

    font-size: 64px;

    font-weight: 800;
}


/* Hlavní informace */

.merch-status {
    margin-top: 20px;

    color: white;

    font-size: 28px;

    font-weight: 700;
}


/* Popis */

.merch-description {
    max-width: 600px;

    margin: 20px auto 0;

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.7;
}