.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-header {
    text-align: center;
    margin-bottom: 30px;
}

.catalog-header h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 2rem;
}

.catalog-header p {
    color: #666;
    font-size: 1.1rem;
}

.capes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 0 auto;
}

.capes-grid .cape {
    display: flex;
    flex-direction: column;
    height: 300px;
    border-radius: 10px;
    background: white;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    width: 220px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease-in-out;
}

.capes-grid .cape:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.capes-grid .cape-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    background-color: #fcfcfc;
}

.capes-grid .cape-top span {
    font-weight: bold;
    color: rgb(70, 70, 70);
    font-size: 14px;
}

.capes-grid .cape-middle {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAAQMAAACQp+OdAAAABlBMVEX4+Pj///9njiF9AAAAFklEQVQoz2P4DwQMIDDKwMoYDQi8DADzAv8BKis8ZwAAAABJRU5ErkJggg==);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.capes-grid .cape-bottom-info {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: rgb(100, 100, 100);
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
}

.cape-middle img{
    width: 90% !important;
}